Skip to content

Commit

Permalink
chore: add flag to enable experimental support for homer
Browse files Browse the repository at this point in the history
  • Loading branch information
psanders committed Sep 28, 2023
1 parent 1151b27 commit 4e31fc0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ ENTRYPOINT ["tini", "-v", "-e", "143", "--"]
CMD sh -c "su-exec postgres pg_ctl start -D /var/lib/postgresql/data && \
su-exec $USER ./convert-to-p12.sh $PATH_TO_CERTS $PKCS_PASSWORD && \
if [ -n \"$HEPLIFY_OPTIONS\" ]; then \
heplify $HEPLIFY_OPTIONS; \
heplify $HEPLIFY_OPTIONS & \
fi && \
DATABASE_URL=$DATABASE_URL su-exec $USER node ./dist/runner"
2 changes: 1 addition & 1 deletion mods/edgeport/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ ENTRYPOINT ["tini", "-v", "-e", "143", "--"]
CMD ["sh", "-c", "set -e && \
./convert-to-p12.sh $PATH_TO_CERTS $PKCS12_PASSWORD && \
if [ -n \"$HEPLIFY_OPTIONS\" ]; then \
./heplify $HEPLIFY_OPTIONS; \
./heplify $HEPLIFY_OPTIONS & \
fi && \
/opt/routr/edgeport.sh"]
4 changes: 2 additions & 2 deletions ops/charts/connect/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: routr-connect
description: Routr Connect Helm Chart
type: application
version: 0.1.11
appVersion: 2.1.11
version: 0.2.0
appVersion: 2.3.0
dependencies:
- name: postgresql
version: 12.1.15
Expand Down
2 changes: 2 additions & 0 deletions ops/charts/connect/templates/edgeport/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ spec:
value: {{ .Values.global.logsLevel }}
- name: OTEL_EXPORTER_JAEGER_ENDPOINT
value: {{ .Values.global.otlExporter }}
- name: HEPLIFY_OPTIONS
value: {{ .Values.edgeport.heplifyOptions }}
ports:
- containerPort: 8080
{{- if .Values.edgeport.transport.tcp.enabled }}
Expand Down
2 changes: 2 additions & 0 deletions ops/charts/connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ edgeport:
- ACK
- BYE
- CANCEL
# Uncomment to enable experimental support for the HEP protocol
# hepLifyOptions: "-hs homerserver:9060"
# Reserved for future use
unknownMethodAction: Discard
# EdgePort image configuration
Expand Down

0 comments on commit 4e31fc0

Please sign in to comment.