Reputation: 115
While deploying an application in K8, if argoCD sync failed, Any way to handle those by sending an email to user through kubernetes configurations
Upvotes: 2
Views: 2146
Reputation: 366
you can use Argo Notifications for this, this is now baked into ArgoCD in the newest version.
It involves using annotations on the app, and setting the template in the notifications configmap. all documentation can be found here: https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/
Upvotes: 3