Skip to content

Commit cf6f538

Browse files
authored
Merge pull request #25 from holaplex/mpw/hub-orgs-keto-urls
[hub-orgs] add keto write/read urls
2 parents 2be9d87 + e299864 commit cf6f538

File tree

3 files changed

+6
-2
lines changed

3 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.4.0
21+
version: 0.4.1
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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ data:
66
{{- with .Values.environment }}
77
PORT: {{ .port | quote }}
88
KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }}
9-
KAFKA_USERNAME: {{ .kafkaUsername | quote }}
9+
KAFKA_USERNAME: {{ required "must set kafka username" .kafkaUsername | quote }}
1010
KAFKA_SSL: {{ required "must set kafka ssl" .kafkaSsl | quote }}
1111
SVIX_BASE_URL: {{ required "must set svix base url" .svixBaseUrl | quote }}
12+
KETO_READ_URL: {{ required "must set keto read url" .ketoReadUrl | quote }}
13+
KETO_WRITE_URL: {{ required "must set keto write url" .ketoWriteUrl | quote }}
1214
{{- end }}

charts/hub-orgs/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,5 @@ environment:
8585
kafkaUsername: ""
8686
kafkaSsl: false
8787
svixBaseUrl: http://svix
88+
ketoReadUrl: http://keto-read
89+
ketoWriteUrl: http://keto-write

0 commit comments

Comments
 (0)