Files
launchpad/cluster-resources/sync-notification.yaml
Danijel Simeunovic 0992b7b1c9 argocd hooks and phases
2026-02-08 12:39:54 +01:00

23 lines
583 B
YAML

apiVersion: batch/v1
kind: Job
metadata:
generateName: app-slack-notification-
annotations:
argocd.argoproj.io/hook: PostSync
argocd.argoproj.io/hook-delete-policy: HookSucceeded
spec:
template:
spec:
containers:
- name: slack-notification
image: curlimages/curl
command:
- curl
- '-X'
- POST
- '--data'
- '{"payload": "Cluster resources updated"}'
- 'https://hooks.slack.com/triggers/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'
restartPolicy: Never
backoffLimit: 2