From d4c21febb9293603e478c8643b7b48f2d419bd8f Mon Sep 17 00:00:00 2001 From: Hongkai Liu Date: Mon, 1 Dec 2025 20:07:03 -0500 Subject: [PATCH 1/2] Replacing OCPBUGS-23745 with OCPBUGS-66230 OCPBUGS-23745 has been fixed and shipped with 4.15. However, the symptom is still there in 4.21 and we create OCPBUGS-66230 to track the issue. --- .../legacycvomonitortests/operators.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go index 82ef439824a1..8d2326611290 100644 --- a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go +++ b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go @@ -402,9 +402,8 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf condition.Reason == "UpdatingAlertmanagerFailed" || condition.Reason == "UpdatingConsolePluginComponentsFailed" || condition.Reason == "UpdatingPrometheusK8SFailed" || - condition.Reason == "UpdatingPrometheusOperatorFailed")) || - (condition.Status == configv1.ConditionUnknown && condition.Reason == "UpdatingPrometheusFailed") { - return "https://issues.redhat.com/browse/OCPBUGS-23745" + condition.Reason == "UpdatingPrometheusOperatorFailed")) { + return "https://issues.redhat.com/browse/OCPBUGS-66230" } if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue { return "https://issues.redhat.com/browse/OCPBUGS-39026" From 1c8033ed140ae67f255908ccf4ac1672abdd97a0 Mon Sep 17 00:00:00 2001 From: Hongkai Liu Date: Tue, 2 Dec 2025 09:43:07 -0500 Subject: [PATCH 2/2] Remove OCPBUGS-66230 OCPBUGS-66230 is closed as the fix is included in 4.21.0-0.nightly-2025-11-30-094855. --- .../legacycvomonitortests/operators.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go index 8d2326611290..68fb9b11f7b9 100644 --- a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go +++ b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go @@ -396,15 +396,6 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf return "https://issues.redhat.com/browse/MCO-1447" } case "monitoring": - if condition.Type == configv1.OperatorAvailable && - (condition.Status == configv1.ConditionFalse && - (condition.Reason == "PlatformTasksFailed" || - condition.Reason == "UpdatingAlertmanagerFailed" || - condition.Reason == "UpdatingConsolePluginComponentsFailed" || - condition.Reason == "UpdatingPrometheusK8SFailed" || - condition.Reason == "UpdatingPrometheusOperatorFailed")) { - return "https://issues.redhat.com/browse/OCPBUGS-66230" - } if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue { return "https://issues.redhat.com/browse/OCPBUGS-39026" }