You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
637 B
24 lines
637 B
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"
|
|
- "-H"
|
|
- "Content-type: application/json"
|
|
- "--data"
|
|
- "{\"text\": \"nemjuhuuu\"}"
|
|
- "https://hooks.slack.com/services/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"
|
|
restartPolicy: Never
|
|
backoffLimit: 2
|
|
|