Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions hack/helm_vars/common.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ dynBackendDomain1: dynamic-backend-1.{{ requiredEnv "NAMESPACE_1" }}.svc.cluster
dynBackendDomain2: dynamic-backend-2.{{ requiredEnv "NAMESPACE_1" }}.svc.cluster.local
dynBackendDomain3: dynamic-backend-3.{{ requiredEnv "NAMESPACE_1" }}.svc.cluster.local

{{- if (eq (env "CONVERSATION_STORE") "") }}
conversationStore: cassandra
{{- else }}
conversationStore: {{ env "CONVERSATION_STORE" }}
{{- end }}

{{- if (eq (env "UPLOAD_XML_S3_BASE_URL") "") }}
uploadXml: {}
{{- else }}
Expand Down
4 changes: 4 additions & 0 deletions hack/helmfile.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,8 @@ releases:
value: {{ .Values.federationDomain1 }}
- name: brig.config.wireServerEnterprise.enabled
value: true
- name: galley.config.postgresMigration.conversation
value: {{ .Values.conversationStore }}
needs:
- 'cassandra-ephemeral'
- 'redis-ephemeral'
Expand All @@ -370,6 +372,8 @@ releases:
value: {{ .Values.federationDomain2 }}
- name: cargohold.config.settings.federationDomain
value: {{ .Values.federationDomain2 }}
- name: galley.config.postgresMigration.conversation
value: {{ .Values.conversationStore }}
needs:
- 'cassandra-ephemeral'
- 'redis-ephemeral'
Expand Down