fix: add email notifier to argocd-notifier (#395)
* Add email notifier configuration to argocd-notifications chart * Bump version in chart * Quote strings in argocd-notifications email notifier Co-authored-by: Domenico Commisso <dcommisso@users.noreply.github.com>
This commit is contained in:
parent
7d5d20f615
commit
8c96f76451
3 changed files with 28 additions and 1 deletions
|
|
@ -27,4 +27,13 @@ stringData:
|
|||
{{- $v | toYaml | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.secret.notifiers.email.enabled }}
|
||||
email:
|
||||
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 | quote }}
|
||||
password: {{ .Values.secret.notifiers.email.password | quote }}
|
||||
from: {{ .Values.secret.notifiers.email.from | quote }}
|
||||
{{- end }}
|
||||
{{ end }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue