Back to examples
Days
Easy
Unix / Linux

Cron expression for every Tuesday at 02

Run a scheduled job every Tuesday at 02.

Cron expression0 2 * * 2
Runs every Tuesday at 02.

Primary dialect: Unix / Linux


Next run examples

Static preview generated for the primary dialect. AWS examples use UTC; other examples use Europe/Berlin for display.

Jun 16, 2026, 2:00 AM

Jun 23, 2026, 2:00 AM

Jun 30, 2026, 2:00 AM

Jul 7, 2026, 2:00 AM

Jul 14, 2026, 2:00 AM


Dialect versions

Unix / Linux
0 2 * * 2

Standard Unix/Linux cron expression when this schedule is expressible with five fields.

AWS EventBridge
cron(0 2 ? * TUE *)

AWS EventBridge cron schedules are evaluated in UTC. Use rate(...) for simple fixed intervals when possible.

Quartz
0 0 2 ? * TUE

Quartz includes a leading seconds field and supports additional day operators.

Kubernetes
0 2 * * 2

Kubernetes CronJobs use standard five-field cron syntax. Non-standard operators require job-level logic.


Variants

Weekday version
0 9 * * 1-5

Runs at 09:00 Monday through Friday.

Daily version
0 0 * * *

Runs every day at midnight.

Hourly version
0 * * * *

Runs once per hour.


Kubernetes notes

  • Kubernetes CronJobs use standard five-field cron syntax.
  • "Set concurrencyPolicy
  • restartPolicy
  • and history limits based on expected runtime and failure behavior."

Common mistakes

  • Forgetting to confirm which timezone the scheduler uses.
  • Assuming the schedule starts relative to deployment time instead of matching wall-clock fields.

FAQ

What is the cron expression for every tuesday at 02?

Use `0 2 * * 2` for standard cron when the scheduler supports this syntax.

Can I use this expression in Kubernetes?

Yes, if it is standard five-field cron. AWS and Quartz-only operators need a Kubernetes-safe alternative or application-level date logic.

Related cron resources