当我将 Cronjob Schedule 设置为时*/1 * * * *
,它会起作用。
当我设置任何数字时0-59
,crontab minute
例如30 * * * *
,它也会起作用。
但是,当我将 Cronjob Schedule 设置为时30 11 * * *
,它甚至不会在 11:30 创建作业。
遵循所有配置:
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: hello
spec:
schedule: "33 11 * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: hello-cronjob
image: busybox
command: ["bash","-c","date;echo Hello from the Kubernetes cluste"]
restartPolicy: OnFailure