Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Discord notifications #735

Merged
merged 3 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update helm chart
  • Loading branch information
hotpheex committed Aug 9, 2023
commit 23bd0a10848208b131acf30eb8cfc854b76e7a73
3 changes: 3 additions & 0 deletions chart/keel/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 5 additions & 0 deletions chart/keel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ teams:
enabled: false
webhookUrl: ""

# Discord notifications
discord:
enabled: false
webhookUrl: ""

# Mail notifications
mail:
enabled: false
Expand Down