Update helm chart

pull/735/head
hotpheex 2023-08-08 19:33:18 -07:00
parent 52af7e9650
commit 23bd0a1084
2 changed files with 8 additions and 0 deletions

View File

@ -27,6 +27,9 @@ data:
{{- if .Values.teams.enabled }}
TEAMS_WEBHOOK_URL: {{ .Values.teams.webhookUrl | b64enc }}
{{- end }}
{{- if .Values.discord.enabled }}
DISCORD_WEBHOOK_URL: {{ .Values.discord.webhookUrl | b64enc }}
{{- end }}
{{- if and .Values.mail.enabled .Values.mail.smtp.pass }}
MAIL_SMTP_PASS: {{ .Values.mail.smtp.pass | b64enc }}
{{- end }}

View File

@ -93,6 +93,11 @@ teams:
enabled: false
webhookUrl: ""
# Discord notifications
discord:
enabled: false
webhookUrl: ""
# Mail notifications
mail:
enabled: false