Skip to content

Commit d943537

Browse files
Merge pull request #30654 from RomanBednar/OCPBUGS-65674
OCPBUGS-65674: VsphereConfigurationTestsRollOutTooOften event matcher should use broader regex
2 parents 1b6ece3 + 8deb29e commit d943537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,8 +1040,8 @@ func newVsphereConfigurationTestsRollOutTooOftenEventMatcher(finalIntervals moni
10401040
locatorKeyRegexes: map[monitorapi.LocatorKey]*regexp.Regexp{
10411041
monitorapi.LocatorNamespaceKey: regexp.MustCompile(`^openshift-cluster-csi-drivers$`),
10421042
},
1043-
messageReasonRegex: regexp.MustCompile(`(^SuccessfulCreate$|^SuccessfulDelete$|^DeploymentUpdated$|^DaemonSetUpdated$)`),
1044-
messageHumanRegex: regexp.MustCompile(`(Created pod.*vmware-vsphere-csi-driver.*|Deleted pod.*vmware-vsphere-csi-driver.*|Updated (Deployment|DaemonSet)\.apps/vmware-vsphere-csi-driver.*)`),
1043+
messageReasonRegex: regexp.MustCompile(`(.*Create.*|.*Delete.*|.*Update.*)`),
1044+
messageHumanRegex: regexp.MustCompile(`(.*Create.*|.*Delete.*|.*Update.*)`),
10451045
jira: "https://issues.redhat.com/browse/OCPBUGS-42610",
10461046
},
10471047
allowIfWithinIntervals: configurationTestIntervals,

0 commit comments

Comments
 (0)