tools.cronBuilder.ui.sections.builder

tools.cronBuilder.ui.sections.expression

tools.cronBuilder.ui.placeholders.humanizer

tools.cronBuilder.ui.sections.preview

tools.cronBuilder.ui.placeholders.preview

Calendar

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

tools.cronBuilder.ui.snippets

Linux crontab
# UTC
*/5 * * * * /usr/bin/env your-command
Kubernetes CronJob
apiVersion: batch/v1
kind: CronJob
metadata:
  name: demo
spec:
  schedule: "*/5 * * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: app
            image: your-image
          restartPolicy: OnFailure
Spring @Scheduled
@Scheduled(cron = "*/5 * * * *", zone = "UTC")
public void runTask() { /* ... */ }
GitHub Actions
on:
  schedule:
    - cron: '*/5 * * * *'
AWS EventBridge
{"Name":"demo","ScheduleExpression":"cron(*/5 * * * *)","State":"ENABLED","EventPattern":{}}