Jobs and CronJobs in Kubernetes

From the Kubernetes Essentials cheat sheet ยท Other Workloads ยท verified Aug 2026

Jobs and CronJobs

Run tasks to completion once or on a schedule.

bash
kubectl create job report --image=busybox:1.37 -- echo ready
๐Ÿ“Œ Jobs retry Pods until completion policy is met
๐Ÿ“Œ CronJob schedules use the controller timezone
๐Ÿ’ก Set history limits and deadlines in manifests
โš ๏ธ Jobs must be safe to retry
jobcronjobbatch

Continue with Kubernetes Essentials

Save the full cheat sheet or work through every related task.

More Kubernetes tasks

Back to the full Kubernetes Essentials cheat sheet