Cron Expression Helper & Kubernetes CronJob Generator

Parse a cron expression into plain English, preview the next run times, and generate a Kubernetes CronJob manifest.

In plain English -
-

Cron expression fields

  • Minute (0–59), Hour (0–23), Day of month (1–31), Month (1–12), Day of week (0–6, Sunday = 0)
  • Supports * (any), */n (every n), a-b (range), and a,b,c (list).

Using it with Kubernetes

Once your expression is valid, copy the generated CronJob manifest and adjust the image and command. Kubernetes CronJobs use the same 5-field cron syntax, so what you preview here matches how the cluster schedules the job.