fix: missing postgres password when using existing secret in tandoor-recipes (#53)

This commit is contained in:
2024-01-29 16:37:05 +01:00
committed by GitHub
parent a8593ca31e
commit ae11cb1378
2 changed files with 12 additions and 2 deletions

View File

@ -46,8 +46,18 @@ spec:
value: {{ include "tandoor-recipes.postgresql.port" . | quote }}
- name: POSTGRES_USER
value: {{ include "tandoor-recipes.postgresql.username" . }}
{{- if or .Values.postgresql.enabled .Values.externalPostgresql.existingSecret }}
- name: POSTGRES_PASSWORD
value: {{ include "tandoor-recipes.postgresql.password" . }}
valueFrom:
secretKeyRef:
{{- if .Values.postgresql.enabled }}
name: {{ .Values.postgresql.existingSecret | default (include "tandoor-recipes.postgresql.fullname" .) }}
key: password
{{- else }}
name: {{ .Values.externalPostgresql.existingSecret }}
key: {{ .Values.externalPostgresql.existingSecretPasswordKey }}
{{- end }}
{{- end }}
- name: POSTGRES_DB
value: {{ include "tandoor-recipes.postgresql.database" . }}
- name: SECRET_KEY