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-09-16 23:001789599600
2026-09-16 23:101789600200
2026-09-16 23:201789600800
2026-09-16 23:301789601400
2026-09-16 23:401789602000

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 →