You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should have a place in the cluster definition where the users can configure non-default job schedules.
I'm going to do this by adding a top-level Jobs property with individual schedules for the specific operations. We're currently persisting this as the V1NeonClusterOperator resource. I'm going to refactor this a bit:
Renaming this to V1NeonClusterJobs. The idea here is to globalize this setting so its not specifically tied to the neon-cluster-operator, even though that's who is handling these right now.
Renamed the schedule properties to clarify what they do.
Removed the cluster setup step where we temporarily special case the Harbor push schedule and then wait for the push to complete. This simplifies the logic and will speed up setup of non-desktop clusters. I don't really think waiting this for this during cluster setup is actually that useful anyway. The only place I can think of is that when we implement cluster scaling, we'll need to make sure that new nodes have the required cluster images be loaded pinned into CRI-O. These are already configured in our node images, so we should be good-to-go.
Extend the Quartz CRON schedule to allow randomized times for various fields. I'm going to add support for the "R" character in the second, minute, and hour fields. So for seconds and minutes this will set a random value between 0..59 and 0..23 for hours. The rationale is that the telemetry ping as currently implemented will have all user clusters transmit their pings at exactly 12am UTC which will be a problem long term. After this change, we set the telemetry ping schedule to R R 0 ? * * which will select a random time between 12:00am-12:59:00am UTC.
We'll continue to disable Harbor push for DESKTOP clusters.
The text was updated successfully, but these errors were encountered:
We should have a place in the cluster definition where the users can configure non-default job schedules.
I'm going to do this by adding a top-level Jobs property with individual schedules for the specific operations. We're currently persisting this as the V1NeonClusterOperator resource. I'm going to refactor this a bit:
0..59
and0..23
for hours. The rationale is that the telemetry ping as currently implemented will have all user clusters transmit their pings at exactly 12am UTC which will be a problem long term. After this change, we set the telemetry ping schedule toR R 0 ? * *
which will select a random time between 12:00am-12:59:00am UTC.The text was updated successfully, but these errors were encountered: