ripe-car-38698
09/19/2025, 4:37 PMhundreds-rainbow-67050
09/19/2025, 4:59 PM@schedule(cron=os.environ['MY_CRON'])
2. using configs (see this example using config_expr)victorious-lawyer-58417
09/19/2025, 5:00 PM@schedule(cron=config_expr('schedule.cron'))
class ScalableFlow(FlowSpec):
schedule = Config('schedule', default_value='{"cron": "*/30 * * * *"}')
then you can specify the schedule in a config file or on the command line
python scalableflow.py --config-value schedule '{"cron": "*/31 * * * *"}' argo-workflows createripe-car-38698
09/19/2025, 7:08 PM