scheduler
Run child node at a cron schedule.
Description
Run child node at a cron schedule.
Parameters
Parameter |
Type |
Required |
Default |
Comment |
---|---|---|---|---|
cron | str |
Yes |
- |
Specify schedule in cron style. |
Examples
# Run child node every minute
- scheduler:
name: "scheduler"
cron: "*/1 * * * *"
# Run child node every day at 12:30
- scheduler:
name: "scheduler"
cron: "30 12 * * *"