Back to Glossary
Kubernetes

What is CronJob?

A Kubernetes workload that runs Jobs on a scheduled, cron-like time basis.

A CronJob in Kubernetes creates Job objects on a schedule defined using standard cron syntax. It's used for recurring tasks like database backups, report generation, or cleanup scripts. Key settings include concurrencyPolicy (Allow/Forbid/Replace), successfulJobsHistoryLimit, and failedJobsHistoryLimit. CronJobs run in UTC by default. Common issue: the CronJob controller requires at least one successful run in the past 100 scheduled times.

Deep Dive Guide

what is job and cronjob kubernetes

Related Terms

Test your knowledge of CronJob and 130 other DevOps concepts