argocd-example-apps/pre-post-sync/components/post-sync-job.yaml

17 lines
343 B
YAML
Raw Normal View History

2018-07-09 10:20:35 +02:00
apiVersion: batch/v1
kind: Job
metadata:
generateName: after-
annotations:
argocd.argoproj.io/hook: PostSync
argocd.argoproj.io/hook-delete-policy: OnSuccess
2018-07-09 10:20:35 +02:00
spec:
template:
spec:
containers:
- name: sleep
image: alpine:latest
command: ["sleep", "20"]
2018-07-09 10:20:35 +02:00
restartPolicy: Never
backoffLimit: 0