Robert Denham
07/25/2025, 4:10 AMMarvin
07/25/2025, 4:10 AMMarvin
07/25/2025, 4:11 AMbash
prefect deploy
from the directory containing your deployment.yaml file.
The schedule will execute your flow every day at 9:00 AM Brisbane time, as long as you have a worker running that can pick up the scheduled runs.
Would you like me to explain any part of this configuration in more detail?Robert Denham
07/25/2025, 4:12 AMMarvin
07/25/2025, 4:12 AMMarvin
07/25/2025, 4:12 AMyaml
schedule:
rrule: FREQ=DAILY;BYHOUR=9;BYMINUTE=0;BYSECOND=0
timezone: Australia/Brisbane
You can directly copy and paste this into your deployment YAML file under your deployment configuration. This is the minimal, focused snippet that specifically handles the scheduling part you asked about.
The schedule will run:
- Every day (FREQ=DAILY)
- At 90000 AM (BYHOUR=9;BYMINUTE=0;BYSECOND=0)
- In Brisbane time (timezone: Australia/Brisbane)