Skip to content

Commit 4880709

Browse files
authored
🐛 Fix ExternalDB settings are not passed to temporal deployment (#10923)
* Fix for issue #7067 * Basing external-db secret on conditional for postgresql in helm chart
1 parent 4ece1ad commit 4880709

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{{- if not .Values.postgresql.enabled }}
2+
apiVersion: v1
3+
kind: Secret
4+
metadata:
5+
name: airbyte-externaldb
6+
annotations:
7+
helm.sh/hook: pre-install,pre-upgrade
8+
helm.sh/hook-weight: "-1"
9+
data:
10+
postgresql-password: {{ .Values.externalDatabase.password | b64enc }}
11+
{{- end }}

0 commit comments

Comments
 (0)