github.com/argoproj/argo-cd/v2@v2.10.9/resource_customizations/apps.kruise.io/AdvancedCronJob/testdata/suspended.yaml (about) 1 apiVersion: apps.kruise.io/v1alpha1 2 kind: AdvancedCronJob 3 metadata: 4 name: acj-test 5 spec: 6 schedule: "*/1 * * * *" 7 template: 8 broadcastJobTemplate: 9 spec: 10 template: 11 spec: 12 containers: 13 - name: pi 14 image: perl 15 command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"] 16 restartPolicy: Never 17 completionPolicy: 18 type: Always 19 ttlSecondsAfterFinished: 30 20 paused: true 21 22 status: 23 type: BroadcastJob