Update helm chart
parent
52af7e9650
commit
23bd0a1084
|
@ -27,6 +27,9 @@ data:
|
||||||
{{- if .Values.teams.enabled }}
|
{{- if .Values.teams.enabled }}
|
||||||
TEAMS_WEBHOOK_URL: {{ .Values.teams.webhookUrl | b64enc }}
|
TEAMS_WEBHOOK_URL: {{ .Values.teams.webhookUrl | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.discord.enabled }}
|
||||||
|
DISCORD_WEBHOOK_URL: {{ .Values.discord.webhookUrl | b64enc }}
|
||||||
|
{{- end }}
|
||||||
{{- if and .Values.mail.enabled .Values.mail.smtp.pass }}
|
{{- if and .Values.mail.enabled .Values.mail.smtp.pass }}
|
||||||
MAIL_SMTP_PASS: {{ .Values.mail.smtp.pass | b64enc }}
|
MAIL_SMTP_PASS: {{ .Values.mail.smtp.pass | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -93,6 +93,11 @@ teams:
|
||||||
enabled: false
|
enabled: false
|
||||||
webhookUrl: ""
|
webhookUrl: ""
|
||||||
|
|
||||||
|
# Discord notifications
|
||||||
|
discord:
|
||||||
|
enabled: false
|
||||||
|
webhookUrl: ""
|
||||||
|
|
||||||
# Mail notifications
|
# Mail notifications
|
||||||
mail:
|
mail:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Reference in New Issue