Kubernetes Workloads Cheat Sheet/Create job from cronjob

Trigger an ad hoc run from an existing CronJob.

Section: Jobs and CronJobs

Create job from cronjob

bash
bash
kubectl create job --from=cronjob/nightly-backup manual-backup-20260305 -n ops
Explanation

Trigger an ad hoc run from an existing CronJob.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Jobs and CronJobs
List jobs
Show Jobs across namespaces.
OpenIn sheetbashsame section
Describe job
Inspect completions, pods, and failures.
OpenIn sheetbashsame section
Delete job
Remove a finished or failed Job.
OpenIn sheetbashsame section
List cronjobs
Show CronJobs across namespaces.
OpenIn sheetbashsame section
Describe cronjob
Inspect the cron schedule, history limits, and concurrency policy.
OpenIn sheetbashsame section
Suspend cronjob
Pause CronJob scheduling without deleting it.
OpenIn sheetbashsame section