Skip to content

Commit 7f880ff

Browse files
committed
feat: configure hub-orgs for svix
1 parent bc0b3d5 commit 7f880ff

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

charts/hub-orgs/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.2.0
21+
version: 0.3.0
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/hub-orgs/templates/environment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ data:
77
ORY_BASE_URL: {{ .oryBaseUrl }}
88
PORT: {{ .port | quote }}
99
KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }}
10+
SVIX_BASE_URL: {{ required "must set svix base url" .svixBaseUrl | quote }}
1011
{{- end }}

charts/hub-orgs/templates/secrets.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ metadata:
88
"helm.sh/hook": pre-install
99
type: Opaque
1010
data:
11+
SVIX_AUTH_TOKEN: {{ .entries.svixAuthToken | b64enc }}
1112
DATABASE_URL: {{ .entries.databaseUrl | b64enc }}
1213
ORY_AUTH_TOKEN: {{ .entries.oryAuthToken | b64enc }}
1314
{{- end }}

charts/hub-orgs/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,10 @@ secrets:
7777
entries:
7878
oryAuthToken: ""
7979
databaseUrl: ""
80+
svixAuthToken: ""
8081

8182
environment:
8283
port: "80"
8384
oryBaseUrl: "http://hydra-admin"
8485
kafkaBrokers:
86+
svixBaseUrl:

0 commit comments

Comments
 (0)