Cron Expression: */10 * * * *

Every 10 minutes (00, 10, 20, 30, 40, 50) of every hour.

Field Breakdown

FieldValue
Minute*/10
Hour*
Day of Month*
Month*
Day of Week*

Common Use Case

Backup snapshots, cache refreshes.

Sample Fire Times (UTC)

WhenUnix Timestamp
2026-04-27 22:001777327200
2026-04-27 22:101777327800
2026-04-27 22:201777328400
2026-04-27 22:301777329000
2026-04-27 22:401777329600

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 * * * *"

Other Common Cron Expressions

Need the full converter? Open the Timestamp Converter →