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 ee8e42728e
commit 920736fc77
1 changed files with 2 additions and 2 deletions

View File

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