📅 发布时间:2026/6/20 21:27:32 k8s cronjob设置定时执行周期 # 每分钟执行一次 schedule: "* * * * *"或者schedule: "*/1 * * * *" # 每小时0分执行一次 schedule: "0 * * * *" # 每天0点0时0分执行一次 schedule: "0 0 * * *"