Skip to content

Commit fbc51fe

Browse files
authored
Merge pull request #21 from holaplex/mpw/orgs-kafka-auth
add kafka auth to hub orgs helm chart
2 parents 60fc203 + 868c3ec commit fbc51fe

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
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.3.1
21+
version: 0.3.2
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,6 +7,7 @@ data:
77
ORY_BASE_URL: {{ .oryBaseUrl }}
88
PORT: {{ .port | quote }}
99
KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }}
10+
KAFKA_USERNAME: {{ .kafkaUsername | quote }}
1011
KAFKA_SSL: {{ required "must set kafka ssl" .kafkaSsl | quote }}
1112
SVIX_BASE_URL: {{ required "must set svix base url" .svixBaseUrl | quote }}
1213
{{- end }}

charts/hub-orgs/templates/secrets.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ data:
1111
SVIX_AUTH_TOKEN: {{ .entries.svixAuthToken | b64enc }}
1212
DATABASE_URL: {{ .entries.databaseUrl | b64enc }}
1313
ORY_AUTH_TOKEN: {{ .entries.oryAuthToken | b64enc }}
14+
KAFKA_PASSWORD: {{ .entries.kafkaPassword | b64enc }}
15+
{{- end }}
1416
{{- end }}
15-
{{- end }}

charts/hub-orgs/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,12 @@ secrets:
7878
oryAuthToken: ""
7979
databaseUrl: ""
8080
svixAuthToken: ""
81+
kafkaPassword: ""
8182

8283
environment:
8384
port: "80"
8485
oryBaseUrl: "http://hydra-admin"
8586
kafkaBrokers:
87+
kafkaUsername: ""
8688
kafkaSsl: false
8789
svixBaseUrl:

0 commit comments

Comments
 (0)