Back to examples
Intervals
Easy
Unix / Linux

Cron expression for every minute

Run a scheduled job once every minute with Unix cron, AWS EventBridge, Quartz, or Kubernetes CronJobs.

Cron expression* * * * *
Runs when the Unix cron fields match.

Primary dialect: Unix / Linux


Next run examples

Static preview generated for the primary dialect. AWS examples use UTC; other examples use Europe/Berlin for display.

Jun 9, 2026, 10:45 AM

Jun 9, 2026, 10:46 AM

Jun 9, 2026, 10:47 AM

Jun 9, 2026, 10:48 AM

Jun 9, 2026, 10:49 AM


Dialect versions

Unix / Linux
* * * * *

Standard Unix/Linux cron expression when this schedule is expressible with five fields.

AWS EventBridge
rate(1 minute)

AWS EventBridge cron schedules are evaluated in UTC. Use rate(...) for simple fixed intervals when possible.

Quartz
0 * * * * ?

Quartz includes a leading seconds field and supports additional day operators.

Kubernetes
* * * * *

Kubernetes CronJobs use standard five-field cron syntax. Non-standard operators require job-level logic.


Variants

Weekday version
0 9 * * 1-5

Runs at 09:00 Monday through Friday.

Daily version
0 0 * * *

Runs every day at midnight.

Hourly version
0 * * * *

Runs once per hour.


Kubernetes notes

  • Kubernetes CronJobs use standard five-field cron syntax.
  • Set concurrencyPolicy, restartPolicy, and history limits based on how long the job can run.

Common mistakes

  • Confusing fixed clock schedules with intervals that start from deployment time.
  • Forgetting to confirm which timezone the scheduler uses.

FAQ

What is the cron expression for every minute?

Use `* * * * *` for standard cron when the scheduler supports this syntax.

Can I use this expression in Kubernetes?

Yes, if it is standard five-field cron. AWS and Quartz-only operators need a Kubernetes-safe alternative or application-level date logic.

Related cron resources

Blog
Kubernetes
Kubernetes Backup CronJobs

Create Kubernetes CronJobs for backups with concurrency controls, secrets, storage, verification, and alerts.

Open
Platform
Kubernetes
Kubernetes CronJob guide

Understand Kubernetes CronJob schedules, YAML, concurrencyPolicy, missed jobs, and timezone behavior.

Open
Blog
Kubernetes
Kubernetes CronJobs Guide

A practical guide to Kubernetes CronJob schedules, YAML, concurrencyPolicy, missed jobs, and timezone behavior.

Open
Academy
Intermediate
Kubernetes Scheduling

Learn Kubernetes CronJobs, schedule syntax, concurrencyPolicy, restart behavior, missed jobs, timezones, and production-safe manifests.

Open