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
The unchangedConditionCount field in the status condition can interfere with updating CR, especially at the initial stage when the reconcile interval is 5 seconds. Eventually, it'll only be updated every 120 seconds, but can still be disruptive.
We should consider using the lastTransitionTime instead (if appropriate, otherwise lastUpdateTime) to determine when to increase the reconcileInterval. In some cases, the status condition and lastTransitionTime are not set/updated correctly, so that must be resolved first.
If the above is possible, then we should also support a configuration option to disable .status.reconcileInterval field (i.e. reconcileIntervalHide), so that users are not interrupted by status updates when trying to update CR spec.
The text was updated successfully, but these errors were encountered:
The
unchangedConditionCount
field in the status condition can interfere with updating CR, especially at the initial stage when the reconcile interval is 5 seconds. Eventually, it'll only be updated every 120 seconds, but can still be disruptive.We should consider using the
lastTransitionTime
instead (if appropriate, otherwiselastUpdateTime
) to determine when to increase the reconcileInterval. In some cases, the status condition andlastTransitionTime
are not set/updated correctly, so that must be resolved first.If the above is possible, then we should also support a configuration option to disable
.status.reconcileInterval
field (i.e. reconcileIntervalHide), so that users are not interrupted by status updates when trying to update CR spec.The text was updated successfully, but these errors were encountered: