Skip to content

Commit dd782d9

Browse files
committed
1 parent c65d2d1 commit dd782d9

File tree

1 file changed

+11
-4
lines changed
  • pkg/monitortests/clusterversionoperator/legacycvomonitortests

1 file changed

+11
-4
lines changed

pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -697,11 +697,13 @@ func clusterOperatorIsNotProgressingWhenMachineConfigIs(events monitorapi.Interv
697697
return "https://issues.redhat.com/browse/OCPBUGS-62630"
698698
}
699699
case "node-tuning":
700-
if reason == "Reconciling" {
700+
if reason == "Reconciling" || reason == "ProfileProgressing" {
701701
return "https://issues.redhat.com/browse/OCPBUGS-62632"
702702
}
703703
case "openshift-controller-manager":
704-
if reason == "_DesiredStateNotYetAchieved" {
704+
// _DesiredStateNotYetAchieved
705+
// RouteControllerManager_DesiredStateNotYetAchieved
706+
if strings.HasSuffix(reason, "_DesiredStateNotYetAchieved") {
705707
return "https://issues.redhat.com/browse/OCPBUGS-63116"
706708
}
707709
case "service-ca":
@@ -713,8 +715,9 @@ func clusterOperatorIsNotProgressingWhenMachineConfigIs(events monitorapi.Interv
713715
// GCPPDCSIDriverOperatorCR_GCPPDDriverNodeServiceController_Deploying
714716
// AWSEBSCSIDriverOperatorCR_AWSEBSDriverNodeServiceController_Deploying
715717
// VolumeDataSourceValidatorDeploymentController_Deploying
716-
if strings.HasSuffix(reason, "Controller_Deploying") ||
717-
reason == "GCPPD_Deploying" {
718+
// GCPPD_Deploying
719+
// AWSEBS_Deploying
720+
if strings.HasSuffix(reason, "_Deploying") {
718721
return "https://issues.redhat.com/browse/OCPBUGS-62634"
719722
}
720723
case "olm":
@@ -723,6 +726,10 @@ func clusterOperatorIsNotProgressingWhenMachineConfigIs(events monitorapi.Interv
723726
if strings.HasSuffix(reason, "ControllerManager_Deploying") {
724727
return "https://issues.redhat.com/browse/OCPBUGS-62635"
725728
}
729+
case "operator-lifecycle-manager-packageserver":
730+
if reason == "" {
731+
return "https://issues.redhat.com/browse/OCPBUGS-63672"
732+
}
726733
}
727734
return ""
728735
}

0 commit comments

Comments
 (0)