Skip to content

Commit a97e596

Browse files
committed
test: remove OTE exceptions for OPRUN-4569 / OCPSTRAT-2484
Remove three exception callbacks that were suppressing test failures for now-fixed ClusterOperator condition false alarms in OLM components: - OCPBUGS-62517: olm Available=False during rolling update — fixed by cluster-olm-operator PR #202 (2 replicas + PDB on HA topology) - OCPBUGS-62635: olm Progressing=True during MCO upgrade window — fixed by same PR #202 (PDB prevents zero-pod rollout) - OCPBUGS-63672: operator-lifecycle-manager-packageserver Progressing=True on empty reason during pod disruption — fixed by operator-framework-olm commit 3071726a6 (isAPIServiceBackendDisrupted returns RetryableError) The operator-lifecycle-manager exception (OCPBUGS-65583) is intentionally kept; OLMv0 is in maintenance mode and the team decided not to change it. Assisted-by: claude Signed-off-by: Todd Short <todd.short@me.com>
1 parent 65f4e3a commit a97e596

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

  • pkg/monitortests/clusterversionoperator/legacycvomonitortests

pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -356,15 +356,6 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf
356356
(condition.Status == configv1.ConditionUnknown && condition.Reason == "UpdatingPrometheusFailed") {
357357
return "https://issues.redhat.com/browse/OCPBUGS-23745"
358358
}
359-
case "olm":
360-
if condition.Type == configv1.OperatorAvailable &&
361-
condition.Status == configv1.ConditionFalse &&
362-
// "OperatorcontrollerDeploymentOperatorControllerControllerManager_Deploying"
363-
// "CatalogdDeploymentCatalogdControllerManager_Deploying"
364-
// "CatalogdDeploymentCatalogdControllerManager_Deploying::OperatorcontrollerDeploymentOperatorControllerControllerManager_Deploying"
365-
strings.HasSuffix(condition.Reason, "ControllerManager_Deploying") {
366-
return "https://issues.redhat.com/browse/OCPBUGS-62517"
367-
}
368359
case "openshift-apiserver":
369360
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse &&
370361
(condition.Reason == "APIServerDeployment_NoDeployment" ||
@@ -745,16 +736,6 @@ func testUpgradeOperatorProgressingStateTransitions(events monitorapi.Intervals,
745736
if reason == "_ManagedDeploymentsAvailable" {
746737
return "https://issues.redhat.com/browse/OCPBUGS-62633"
747738
}
748-
case "olm":
749-
// CatalogdDeploymentCatalogdControllerManager_Deploying
750-
// OperatorcontrollerDeploymentOperatorControllerControllerManager_Deploying
751-
if strings.HasSuffix(reason, "ControllerManager_Deploying") {
752-
return "https://issues.redhat.com/browse/OCPBUGS-62635"
753-
}
754-
case "operator-lifecycle-manager-packageserver":
755-
if reason == "" {
756-
return "https://issues.redhat.com/browse/OCPBUGS-63672"
757-
}
758739
}
759740
return ""
760741
}

0 commit comments

Comments
 (0)