k8s cronjob设置定时执行周期
# 每分钟执行一次
schedule: "* * * * *"或者schedule: "*/1 * * * *"
# 每小时0分执行一次
schedule: "0 * * * *"
# 每天0点0时0分执行一次
schedule: "0 0 * * *"
# 每分钟执行一次
schedule: "* * * * *"或者schedule: "*/1 * * * *"
# 每小时0分执行一次
schedule: "0 * * * *"
# 每天0点0时0分执行一次
schedule: "0 0 * * *"