-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feat) add support to send notification via SMTP
Create Secret ``` kubectl create secret generic smtp --type=addons.projectsveltos.io/cluster-profile \ --from-literal=SMTP_RECIPIENTS=<to email addresses> \ --from-literal=SMTP_BCC=<bcc email addresses> \ --from-literal=SMTP_SENDER=<send email address> \ --from-literal=SMTP_PASSWORD=<sender app passowrd> \ --from-literal=SMTP_HOST=<host> ``` Add SMTP notification ```yaml notifications: - name: smtp type: SMTP notificationRef: apiVersion: v1 kind: Secret name: smtp namespace: default ```
- Loading branch information
mgianluc
committed
Jan 5, 2025
1 parent
bc3622e
commit 9f5d3ef
Showing
3 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters