Cron Expression: 0 1 * * *
Every day at 01:00 (1 AM).
Field Breakdown
| Field | Value |
|---|---|
| Minute | 0 |
| Hour | 1 |
| Day of Month | * |
| Month | * |
| Day of Week | * |
Common Use Case
Off-peak processing, nightly backups.
Sample Fire Times (UTC)
| When | Unix Timestamp |
|---|---|
| 2026-04-28 01:00 | 1777338000 |
| 2026-04-29 01:00 | 1777424400 |
| 2026-04-30 01:00 | 1777510800 |
| 2026-05-01 01:00 | 1777597200 |
| 2026-05-02 01:00 | 1777683600 |
Sample times computed at build; your scheduler will fire on its own clock.
Equivalents in Popular Schedulers
crontab (Linux/macOS)
0 1 * * * /path/to/your/script.sh
GitHub Actions (.github/workflows/*.yml)
on:
schedule:
- cron: '0 1 * * *'
AWS EventBridge (cron format)
cron(0 1 * * *) # Note: AWS uses 6 fields with year
Kubernetes CronJob
spec: schedule: "0 1 * * *"