Skip to content

Commit 558fc12

Browse files
committed
Add an exception OCPBUGS-62517 for olm's Available=False
1 parent bf8ad46 commit 558fc12

File tree

1 file changed

+7
-0
lines changed
  • pkg/monitortests/clusterversionoperator/legacycvomonitortests

1 file changed

+7
-0
lines changed

pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,13 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf
401401
if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue {
402402
return "https://issues.redhat.com/browse/OCPBUGS-39026", nil
403403
}
404+
case "olm":
405+
if condition.Type == configv1.OperatorAvailable &&
406+
condition.Status == configv1.ConditionFalse &&
407+
(condition.Reason == "OperatorcontrollerDeploymentOperatorControllerControllerManager_Deploying" ||
408+
condition.Reason == "CatalogdDeploymentCatalogdControllerManager_Deploying") {
409+
return "https://issues.redhat.com/browse/OCPBUGS-62517", nil
410+
}
404411
case "openshift-apiserver":
405412
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse &&
406413
(condition.Reason == "APIServerDeployment_NoDeployment" ||

0 commit comments

Comments
 (0)