Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ func syncOpenShiftAPIServer_v311_00_to_latest(c OpenShiftAPIServerOperator, orig
})
}

if actualDaemonSet.ObjectMeta.Generation == operatorConfig.Status.ObservedGeneration {
// If the daemonset is up to date and the operatorConfig are up to date, then we are no longer progressing
if actualDaemonSet.ObjectMeta.Generation == actualDaemonSet.Status.ObservedGeneration &&
operatorConfig.ObjectMeta.Generation == operatorConfig.Status.ObservedGeneration {
v1helpers.SetOperatorCondition(&operatorConfig.Status.Conditions, operatorv1.OperatorCondition{
Type: operatorv1.OperatorStatusTypeProgressing,
Status: operatorv1.ConditionFalse,
Expand Down