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-04-27 22:00 | 1777327200 |
| 2026-04-27 22:10 | 1777327800 |
| 2026-04-27 22:20 | 1777328400 |
| 2026-04-27 22:30 | 1777329000 |
| 2026-04-27 22:40 | 1777329600 |
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 * * * *"