1apiVersion: batch/v1 2kind: CronJob 3metadata: 4 name: cronjob-test 5spec: 6 schedule: "*/1 * * * *" 7 concurrencyPolicy: Allow 8 suspend: false 9 startingDeadlineSeconds: 30 10 successfulJobsHistoryLimit: 3 11 failedJobsHistoryLimit: 1 12 jobTemplate: 13 spec: 14 template: 15 spec: 16 containers: 17 - name: test 18 image: {{.BusyBoxImage}} 19 args: 20 - "/bin/true" 21 restartPolicy: OnFailure