Cron Expression: 0 2 * * *
Every day at 02:00 (2 AM).
Field Breakdown
| Field | Value |
|---|---|
| Minute | 0 |
| Hour | 2 |
| Day of Month | * |
| Month | * |
| Day of Week | * |
Common Use Case
Standard slot for nightly jobs in many schedulers.
Sample Fire Times (UTC)
| When | Unix Timestamp |
|---|---|
| 2026-04-28 02:00 | 1777341600 |
| 2026-04-29 02:00 | 1777428000 |
| 2026-04-30 02:00 | 1777514400 |
| 2026-05-01 02:00 | 1777600800 |
| 2026-05-02 02:00 | 1777687200 |
Sample times computed at build; your scheduler will fire on its own clock.
Equivalents in Popular Schedulers
crontab (Linux/macOS)
0 2 * * * /path/to/your/script.sh
GitHub Actions (.github/workflows/*.yml)
on:
schedule:
- cron: '0 2 * * *'
AWS EventBridge (cron format)
cron(0 2 * * *) # Note: AWS uses 6 fields with year
Kubernetes CronJob
spec: schedule: "0 2 * * *"