21 lines
511 B
YAML
21 lines
511 B
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
generateName: jenkins-snapshot-
|
|
annotations:
|
|
argocd.argoproj.io/hook: PostSync
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: jenkins-snapshot
|
|
image: docker.io/curlimages/curl
|
|
command:
|
|
- curl
|
|
- http://longhorn-frontend.longhorn-system/v1/volumes/pvc-4d42f4d3-2f9d-4edd-b82c-b51a385a3276?action=snapshotCreate
|
|
- -H
|
|
- Content-Type application/json
|
|
- -d
|
|
- '{}'
|
|
restartPolicy: Never
|