Cron Expression: */10 * * * *
Every 10 minutes (00, 10, 20, 30, 40, 50) of every hour.
Field Breakdown
| Field | Value |
|---|---|
| Minute | */10 |
| Hour | * |
| Day of Month | * |
| Month | * |
| Day of Week | * |
Common Use Case
Backup snapshots, cache refreshes.
Sample Fire Times (UTC)
| When | Unix Timestamp |
|---|---|
| 2026-05-05 16:00 | 1777996800 |
| 2026-05-05 16:10 | 1777997400 |
| 2026-05-05 16:20 | 1777998000 |
| 2026-05-05 16:30 | 1777998600 |
| 2026-05-05 16:40 | 1777999200 |
Sample times computed at build; your scheduler will fire on its own clock.
Equivalents in Popular Schedulers
crontab (Linux/macOS)
*/10 * * * * /path/to/your/script.sh
GitHub Actions (.github/workflows/*.yml)
on:
schedule:
- cron: '*/10 * * * *'
AWS EventBridge (cron format)
cron(*/10 * * * *) # Note: AWS uses 6 fields with year
Kubernetes CronJob
spec: schedule: "*/10 * * * *"