Skip to content

Commit a7f14e2

Browse files
Merge pull request #31207 from hongkailiu/remove-fixed-CO-bugs-c
NO-JIRA: Remove fixed bugs on CO conditions (2) - 2nd try
2 parents 293edee + 8e592a0 commit a7f14e2

2 files changed

Lines changed: 4 additions & 30 deletions

File tree

  • pkg/monitortests/clusterversionoperator/legacycvomonitortests
  • test/extended/machines

pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@ func testStableSystemOperatorStateTransitions(events monitorapi.Intervals, topol
100100
if operator == "kube-scheduler" {
101101
return "https://issues.redhat.com/browse/OCPBUGS-38663"
102102
}
103-
if operator == "network" {
104-
return "https://issues.redhat.com/browse/OCPBUGS-38684"
105-
}
106103
if operator == "console" {
107104
return "https://issues.redhat.com/browse/OCPBUGS-38676"
108105
}
@@ -319,17 +316,6 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf
319316
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse && condition.Reason == "KubeStorageVersionMigrator_Deploying" {
320317
return "https://issues.redhat.com/browse/OCPBUGS-65984"
321318
}
322-
case "monitoring":
323-
if condition.Type == configv1.OperatorAvailable &&
324-
(condition.Status == configv1.ConditionFalse &&
325-
(condition.Reason == "PlatformTasksFailed" ||
326-
condition.Reason == "UpdatingAlertmanagerFailed" ||
327-
condition.Reason == "UpdatingConsolePluginComponentsFailed" ||
328-
condition.Reason == "UpdatingPrometheusK8SFailed" ||
329-
condition.Reason == "UpdatingPrometheusOperatorFailed")) ||
330-
(condition.Status == configv1.ConditionUnknown && condition.Reason == "UpdatingPrometheusFailed") {
331-
return "https://issues.redhat.com/browse/OCPBUGS-23745"
332-
}
333319
case "openshift-apiserver":
334320
if condition.Type == configv1.OperatorAvailable && condition.Status == configv1.ConditionFalse {
335321
if isTwoNode && condition.Reason == "APIServices_PreconditionNotReady" {
@@ -730,10 +716,6 @@ func testUpgradeOperatorProgressingStateTransitions(events monitorapi.Intervals,
730716
if reason == "SyncLoopRefresh_InProgress" {
731717
return "https://issues.redhat.com/browse/OCPBUGS-64688"
732718
}
733-
case "image-registry":
734-
if reason == "NodeCADaemonUnavailable::Ready" || reason == "DeploymentNotCompleted" {
735-
return "https://issues.redhat.com/browse/OCPBUGS-62626"
736-
}
737719
case "ingress":
738720
if reason == "Reconciling" {
739721
return "https://issues.redhat.com/browse/OCPBUGS-62627"
@@ -744,11 +726,7 @@ func testUpgradeOperatorProgressingStateTransitions(events monitorapi.Intervals,
744726
}
745727
case "network":
746728
if reason == "Deploying" || reason == "MachineConfig" {
747-
return "https://issues.redhat.com/browse/OCPBUGS-62630"
748-
}
749-
case "node-tuning":
750-
if reason == "Reconciling" || reason == "ProfileProgressing" {
751-
return "https://issues.redhat.com/browse/OCPBUGS-62632"
729+
return "https://redhat.atlassian.net/browse/OCPBUGS-85677"
752730
}
753731
case "openshift-controller-manager":
754732
// _DesiredStateNotYetAchieved

test/extended/machines/scale.go

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -262,15 +262,11 @@ var _ = g.Describe("[sig-cluster-lifecycle][Feature:Machines][Serial] Managed cl
262262
case "authentication":
263263
return "https://issues.redhat.com/browse/OCPBUGS-65896"
264264
case "dns":
265-
return "https://issues.redhat.com/browse/OCPBUGS-62623"
265+
return "https://redhat.atlassian.net/browse/OCPBUGS-86009"
266266
case "image-registry":
267-
return "https://issues.redhat.com/browse/OCPBUGS-62626"
267+
return "https://redhat.atlassian.net/browse/OCPBUGS-86308"
268268
case "network":
269-
return "https://issues.redhat.com/browse/OCPBUGS-62630"
270-
case "node-tuning":
271-
return "https://issues.redhat.com/browse/OCPBUGS-62632"
272-
case "storage":
273-
return "https://issues.redhat.com/browse/OCPBUGS-62633"
269+
return "https://redhat.atlassian.net/browse/OCPBUGS-85677"
274270
default:
275271
return ""
276272
}

0 commit comments

Comments
 (0)