<@ULVA73B9P> can you give an RRULE schedule examp...
# ask-marvin
r
@Marvin can you give an RRULE schedule example for a deployment using yaml, with a timezone of Brisbane/Australia. I want FREQ=DAILY;BYHOUR=9;BYMINUTE=0;BYSECOND=0
m
thought for 58.8 seconds
To deploy your flow with this configuration, you would run:
Copy code
bash
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?
r
@Marvin give me a yaml snippet of this rule
m
thought for 3.5 seconds
Here's the exact YAML snippet for the RRULE schedule configuration:
Copy code
yaml
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)