helm: fix s3 secret key and email password not being base64 encoded

This commit is contained in:
Jens Langhammer 2021-01-17 23:02:14 +01:00
parent d5f35798dc
commit 175d3b3377
1 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,6 @@ data:
SECRET_KEY: {{ randAlphaNum 50 | b64enc | quote}} SECRET_KEY: {{ randAlphaNum 50 | b64enc | quote}}
{{- end }} {{- end }}
{{- if .Values.backup }} {{- if .Values.backup }}
POSTGRESQL__S3_BACKUP__SECRET_KEY: "{{ .Values.backup.secretKey }}" POSTGRESQL__S3_BACKUP__SECRET_KEY: "{{ .Values.backup.secretKey | b64enc }}"
{{- end}} {{- end}}
EMAIL__PASSWORD: "{{ .Values.config.email.password }}" EMAIL__PASSWORD: "{{ .Values.config.email.password | b64enc }}"