diff --git a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go index c687475761df..468cbd0be472 100644 --- a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go +++ b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go @@ -130,6 +130,9 @@ func testStableSystemOperatorStateTransitions(events monitorapi.Intervals, clien if operator == "kube-scheduler" { return "https://issues.redhat.com/browse/OCPBUGS-38663" } + if operator == "network" { + return "https://issues.redhat.com/browse/OCPBUGS-38684" + } if operator == "console" { return "https://issues.redhat.com/browse/OCPBUGS-38676" } @@ -355,6 +358,17 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse && condition.Reason == "KubeStorageVersionMigrator_Deploying" { return "https://issues.redhat.com/browse/OCPBUGS-65984" } + 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")) || + (condition.Status == configv1.ConditionUnknown && condition.Reason == "UpdatingPrometheusFailed") { + return "https://issues.redhat.com/browse/OCPBUGS-23745" + } case "openshift-apiserver": if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse { if isTwoNode && condition.Reason == "APIServices_PreconditionNotReady" { @@ -748,6 +762,10 @@ func testUpgradeOperatorProgressingStateTransitions(events monitorapi.Intervals, if reason == "SyncLoopRefresh_InProgress" { return "https://issues.redhat.com/browse/OCPBUGS-64688" } + case "image-registry": + if reason == "NodeCADaemonUnavailable::Ready" || reason == "DeploymentNotCompleted" { + return "https://issues.redhat.com/browse/OCPBUGS-62626" + } case "ingress": if reason == "Reconciling" { return "https://issues.redhat.com/browse/OCPBUGS-62627" @@ -758,7 +776,11 @@ func testUpgradeOperatorProgressingStateTransitions(events monitorapi.Intervals, } case "network": if reason == "Deploying" || reason == "MachineConfig" { - return "https://redhat.atlassian.net/browse/OCPBUGS-85677" + return "https://issues.redhat.com/browse/OCPBUGS-62630" + } + case "node-tuning": + if reason == "Reconciling" || reason == "ProfileProgressing" { + return "https://issues.redhat.com/browse/OCPBUGS-62632" } case "openshift-controller-manager": // _DesiredStateNotYetAchieved diff --git a/test/extended/machines/scale.go b/test/extended/machines/scale.go index 9b0d184d5684..1bf58ee90a4d 100644 --- a/test/extended/machines/scale.go +++ b/test/extended/machines/scale.go @@ -259,9 +259,15 @@ var _ = g.Describe("[sig-cluster-lifecycle][Feature:Machines][Serial] Managed cl case "authentication": return "https://issues.redhat.com/browse/OCPBUGS-65896" case "dns": - return "https://redhat.atlassian.net/browse/OCPBUGS-86009" + return "https://issues.redhat.com/browse/OCPBUGS-62623" + case "image-registry": + return "https://issues.redhat.com/browse/OCPBUGS-62626" case "network": - return "https://redhat.atlassian.net/browse/OCPBUGS-85677" + return "https://issues.redhat.com/browse/OCPBUGS-62630" + case "node-tuning": + return "https://issues.redhat.com/browse/OCPBUGS-62632" + case "storage": + return "https://issues.redhat.com/browse/OCPBUGS-62633" default: return "" }