Skip to content

Commit

Permalink
Merge pull request #25 from holaplex/mpw/hub-orgs-keto-urls
Browse files Browse the repository at this point in the history
[hub-orgs] add keto write/read urls
  • Loading branch information
mpwsh authored Feb 27, 2023
2 parents 2be9d87 + e299864 commit cf6f538
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/hub-orgs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.0
version: 0.4.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 3 additions & 1 deletion charts/hub-orgs/templates/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ data:
{{- with .Values.environment }}
PORT: {{ .port | quote }}
KAFKA_BROKERS: {{ required "must set kafka brokers" .kafkaBrokers | quote }}
KAFKA_USERNAME: {{ .kafkaUsername | quote }}
KAFKA_USERNAME: {{ required "must set kafka username" .kafkaUsername | quote }}
KAFKA_SSL: {{ required "must set kafka ssl" .kafkaSsl | quote }}
SVIX_BASE_URL: {{ required "must set svix base url" .svixBaseUrl | quote }}
KETO_READ_URL: {{ required "must set keto read url" .ketoReadUrl | quote }}
KETO_WRITE_URL: {{ required "must set keto write url" .ketoWriteUrl | quote }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/hub-orgs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,5 @@ environment:
kafkaUsername: ""
kafkaSsl: false
svixBaseUrl: http://svix
ketoReadUrl: http://keto-read
ketoWriteUrl: http://keto-write

0 comments on commit cf6f538

Please sign in to comment.