Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down