12345678910111213141516171819202122 |
- apiVersion: batch/v1beta1
- kind: CronJob
- metadata:
- name: cronjob-test
- spec:
- schedule: "*/1 * * * *"
- concurrencyPolicy: Allow
- suspend: false
- startingDeadlineSeconds: 30
- successfulJobsHistoryLimit: 3
- failedJobsHistoryLimit: 1
- jobTemplate:
- spec:
- template:
- spec:
- containers:
- - name: test
- image: busybox
- args:
- - "/bin/true"
- restartPolicy: OnFailure
|