mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-01 15:58:37 +00:00
22 lines
448 B
YAML
22 lines
448 B
YAML
apiVersion: batch/v1
|
|
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: {{.BusyBoxImage}}
|
|
args:
|
|
- "/bin/true"
|
|
restartPolicy: OnFailure
|