From 14cd038bd0e89661a1e0448bfa84a7788c09fde0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Caama=C3=B1o=20Ruiz?= Date: Wed, 6 May 2026 09:00:37 +0000 Subject: [PATCH] Allow OVN-Kubernetes CIDROverlap pathological events MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaime CaamaƱo Ruiz (cherry picked from commit e7e6860a29e6998ad93a3e8d4b4eb342a1f4b887) --- .../duplicated_event_patterns.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go b/pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go index 9bed9eb753e9..db856550ab3b 100644 --- a/pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go +++ b/pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go @@ -560,6 +560,16 @@ func NewUniversalPathologicalEventMatchers(kubeConfig *rest.Config, finalInterva newRemoveSigtermProtectionEventMatcher := newRemoveSigtermProtectionEventMatcher(finalIntervals) registry.AddPathologicalEventMatcherOrDie(newRemoveSigtermProtectionEventMatcher) + // OVN-Kuberentes EVPN e2e tests running in parallel incorrectly create + // multiple VTEP resources with the same CIDR. No further consequence other + // than the Events themselves. Will be fixed with OCPBUGS-84917 + registry.AddPathologicalEventMatcherOrDie(&SimplePathologicalEventMatcher{ + name: "OVNKubernetesCIDRsOverlapWithVTEPsEvents", + messageReasonRegex: regexp.MustCompile(`^CIDROverlap$`), + messageHumanRegex: regexp.MustCompile(`CIDRs overlap with VTEPs`), + jira: "https://redhat.atlassian.net/browse/OCPBUGS-84917", + }) + return registry }