Skip to content

Commit 4e1c43c

Browse files
committed
Allow configuring conversation store while running integration tests in CI
1 parent 1be7f26 commit 4e1c43c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

hack/helm_vars/common.yaml.gotmpl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ dynBackendDomain1: dynamic-backend-1.{{ requiredEnv "NAMESPACE_1" }}.svc.cluster
1313
dynBackendDomain2: dynamic-backend-2.{{ requiredEnv "NAMESPACE_1" }}.svc.cluster.local
1414
dynBackendDomain3: dynamic-backend-3.{{ requiredEnv "NAMESPACE_1" }}.svc.cluster.local
1515

16+
{{- if (eq (env "CONVERSATION_STORE") "") }}
17+
conversationStore: cassandra
18+
{{- else }}
19+
conversationStore: {{ env "CONVERSATION_STORE" }}
20+
{{- end }}
21+
1622
{{- if (eq (env "UPLOAD_XML_S3_BASE_URL") "") }}
1723
uploadXml: {}
1824
{{- else }}

hack/helmfile.yaml.gotmpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@ releases:
352352
value: {{ .Values.federationDomain1 }}
353353
- name: brig.config.wireServerEnterprise.enabled
354354
value: true
355+
- name: galley.config.postgresMigration.conversation
356+
value: {{ .Values.conversationStore }}
355357
needs:
356358
- 'cassandra-ephemeral'
357359
- 'redis-ephemeral'
@@ -370,6 +372,8 @@ releases:
370372
value: {{ .Values.federationDomain2 }}
371373
- name: cargohold.config.settings.federationDomain
372374
value: {{ .Values.federationDomain2 }}
375+
- name: galley.config.postgresMigration.conversation
376+
value: {{ .Values.conversationStore }}
373377
needs:
374378
- 'cassandra-ephemeral'
375379
- 'redis-ephemeral'

0 commit comments

Comments
 (0)