Skip to content

Commit e7e6860

Browse files
committed
Allow OVN-Kubernetes CIDROverlap pathological events
Signed-off-by: Jaime Caamaño Ruiz <jcaamano@redhat.com>
1 parent 1a93dad commit e7e6860

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

pkg/monitortestlibrary/pathologicaleventlibrary/duplicated_event_patterns.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,16 @@ func NewUniversalPathologicalEventMatchers(kubeConfig *rest.Config, finalInterva
560560
newRemoveSigtermProtectionEventMatcher := newRemoveSigtermProtectionEventMatcher(finalIntervals)
561561
registry.AddPathologicalEventMatcherOrDie(newRemoveSigtermProtectionEventMatcher)
562562

563+
// OVN-Kuberentes EVPN e2e tests running in parallel incorrectly create
564+
// multiple VTEP resources with the same CIDR. No further consequence other
565+
// than the Events themselves. Will be fixed with OCPBUGS-84917
566+
registry.AddPathologicalEventMatcherOrDie(&SimplePathologicalEventMatcher{
567+
name: "OVNKubernetesCIDRsOverlapWithVTEPsEvents",
568+
messageReasonRegex: regexp.MustCompile(`^CIDROverlap$`),
569+
messageHumanRegex: regexp.MustCompile(`CIDRs overlap with VTEPs`),
570+
jira: "https://redhat.atlassian.net/browse/OCPBUGS-84917",
571+
})
572+
563573
return registry
564574
}
565575

0 commit comments

Comments
 (0)