Skip to content

Commit 65324f7

Browse files
Merge pull request #31131 from jcaamano/ocpbugs-84917
OCPBUGS-85087: Allow OVN-Kubernetes CIDROverlap pathological events
2 parents 6e55c2a + e7e6860 commit 65324f7

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
@@ -586,6 +586,16 @@ func NewUniversalPathologicalEventMatchers(kubeConfig *rest.Config, finalInterva
586586
newRemoveSigtermProtectionEventMatcher := newRemoveSigtermProtectionEventMatcher(finalIntervals)
587587
registry.AddPathologicalEventMatcherOrDie(newRemoveSigtermProtectionEventMatcher)
588588

589+
// OVN-Kuberentes EVPN e2e tests running in parallel incorrectly create
590+
// multiple VTEP resources with the same CIDR. No further consequence other
591+
// than the Events themselves. Will be fixed with OCPBUGS-84917
592+
registry.AddPathologicalEventMatcherOrDie(&SimplePathologicalEventMatcher{
593+
name: "OVNKubernetesCIDRsOverlapWithVTEPsEvents",
594+
messageReasonRegex: regexp.MustCompile(`^CIDROverlap$`),
595+
messageHumanRegex: regexp.MustCompile(`CIDRs overlap with VTEPs`),
596+
jira: "https://redhat.atlassian.net/browse/OCPBUGS-84917",
597+
})
598+
589599
return registry
590600
}
591601

0 commit comments

Comments
 (0)