Cron Job
Understand how to use cronjob in Kubernetes.
Concept and Usage of CronJob
CronJob will create jobs on a time-based schedule. It is useful when you want to run a job at a specific time or at regular intervals.
You can use this tool crontab.guru to generate the cron expression.
Field | Allowed Values |
---|---|
minute | 0-59 |
hour | 0-23 |
day-of-month | 1-31 |
month | 1-12 |
day-of-week | 0-6 (0 is Sunday) |