bcgov / cas-ggircs

Climate Action Secretariat's Greenhouse Gas Industrial Reporting and Control System
Apache License 2.0
3 stars 4 forks source link

Update cronjob cron expression to be greater than "every minute" #499

Closed dleard closed 1 year ago

dleard commented 1 year ago

Platform services is planning to add a policy that does not allow frequently scheduled cronjobs. Our cronjobs are suspended (will not run until we tell them to), but will still be affected by the policy. We need to increase our cron expressions to have a greater interval.

To do: Change the cron expression in all cronjob schedules. From * * * * * to 0 * * * *

This will satisfy the upcoming policy as they will be scheduled to run every hour instead of every minute. (Though they still won't run until we tell them to via airflow because of suspend: true)