Quote strings in argocd-notifications email notifier
This commit is contained in:
parent
c2acfbe547
commit
0da8f4b6a4
1 changed files with 4 additions and 4 deletions
|
@ -29,11 +29,11 @@ stringData:
|
|||
{{- end }}
|
||||
{{- if .Values.secret.notifiers.email.enabled }}
|
||||
email:
|
||||
host: {{ .Values.secret.notifiers.email.host }}
|
||||
host: {{ .Values.secret.notifiers.email.host | quote }}
|
||||
port: {{ .Values.secret.notifiers.email.port }}
|
||||
insecure_skip_verify: {{ .Values.secret.notifiers.email.insecure_skip_verify }}
|
||||
username: {{ .Values.secret.notifiers.email.username }}
|
||||
password: {{ .Values.secret.notifiers.email.password }}
|
||||
from: {{ .Values.secret.notifiers.email.from }}
|
||||
username: {{ .Values.secret.notifiers.email.username | quote }}
|
||||
password: {{ .Values.secret.notifiers.email.password | quote }}
|
||||
from: {{ .Values.secret.notifiers.email.from | quote }}
|
||||
{{- end }}
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue