Skip to content

Commit 27c8698

Browse files
weliang1claude
andcommitted
CORENET-6462: Remove exceptions for network operator
The network operator should correctly report Available, Progressing, and Degraded state on standard highly-available clusters. Remove the Degraded=True pass-through exception outside upgrade windows and the downstream OCPBUGS-38668 exception, similar to origin#30677 from the storage team. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0bb7edf commit 27c8698

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

  • pkg/monitortests/clusterversionoperator/legacycvomonitortests

pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,6 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf
327327
} else {
328328
return ""
329329
}
330-
case "network":
331-
if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue {
332-
logrus.Infof("Operator %s is in Degraded=True state outside of upgrade window, but we will check for exceptions", operator)
333-
} else {
334-
return ""
335-
}
336330
case "console":
337331
if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue {
338332
return "https://issues.redhat.com/browse/OCPBUGS-38676"
@@ -451,10 +445,6 @@ func testUpgradeOperatorStateTransitions(events monitorapi.Intervals, clientConf
451445
if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue && condition.Reason == "DNSDegraded" {
452446
return "https://issues.redhat.com/browse/OCPBUGS-38666"
453447
}
454-
case "network":
455-
if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue {
456-
return "https://issues.redhat.com/browse/OCPBUGS-38668"
457-
}
458448
case "openshift-samples":
459449
if condition.Type == configv1.OperatorDegraded && condition.Status == configv1.ConditionTrue && condition.Reason == "APIServerServiceUnavailableError" {
460450
return "https://issues.redhat.com/browse/OCPBUGS-38679"

0 commit comments

Comments
 (0)