diff --git a/pkg/operator/status.go b/pkg/operator/status.go index e84eeb1ac7..0f1a2acf9e 100644 --- a/pkg/operator/status.go +++ b/pkg/operator/status.go @@ -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 {