mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-01 13:57:19 +00:00
16 lines
No EOL
312 B
YAML
16 lines
No EOL
312 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: my-hook
|
|
annotations:
|
|
argocd.argoproj.io/hook: Sync
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- command:
|
|
- "true"
|
|
image: "alpine:3.10.2"
|
|
imagePullPolicy: IfNotPresent
|
|
name: main
|
|
restartPolicy: Never |