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
7 changes: 0 additions & 7 deletions pkg/operator/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,13 +304,6 @@ func (optr *Operator) syncUpgradeableStatus(co *configv1.ClusterOperator) error
break
}
}
// this should no longer trigger when adding a node to a pool. It should only trigger if the node actually has to go through an upgrade
// updating and degraded can occur together, in that case defer to the degraded Reason that is already set above
if updating && !degraded && !interrupted {
coStatusCondition.Status = configv1.ConditionFalse
coStatusCondition.Reason = "PoolUpdating"
coStatusCondition.Message = "One or more machine config pools are updating, please see `oc get mcp` for further details"
}

// don't overwrite status if updating or degraded
if !updating && !degraded && !interrupted {
Expand Down