fix secret templating
This commit is contained in:
@@ -5,12 +5,12 @@ kind: Secret
|
||||
metadata:
|
||||
name: pixelfed-mail
|
||||
data:
|
||||
host: {{ .Values.pixelfed.mail.host }}
|
||||
port: {{ .Values.pixelfed.mail.port }}
|
||||
host: {{ .Values.pixelfed.mail.host | b64enc }}
|
||||
port: {{ .Values.pixelfed.mail.port | quote | b64enc}}
|
||||
{{- if .Values.pixelfed.mail.username }}
|
||||
username: {{ .Values.pixelfed.mail.username }}
|
||||
username: {{ .Values.pixelfed.mail.username | b64enc }}
|
||||
{{- end }}
|
||||
{{- if .Values.pixelfed.mail.password }}
|
||||
password: {{ .Values.pixelfed.mail.password }}
|
||||
password: {{ .Values.pixelfed.mail.password | b64enc }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
Reference in New Issue
Block a user