From 1c16117d1e67104493da79eec7e40bd2f5efd715 Mon Sep 17 00:00:00 2001 From: Aaron U'Ren Date: Sat, 2 Dec 2023 12:08:50 -0600 Subject: [PATCH] kube-router: skip 1.28 tests that fail consistently --- tests/e2e/pkg/tester/skip_regex.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/pkg/tester/skip_regex.go b/tests/e2e/pkg/tester/skip_regex.go index 6c34e2f8c7b2e..26f85bdb3991d 100644 --- a/tests/e2e/pkg/tester/skip_regex.go +++ b/tests/e2e/pkg/tester/skip_regex.go @@ -99,6 +99,7 @@ func (t *Tester) setSkipRegexFlag() error { } else if networking.KubeRouter != nil { skipRegex += "|load-balancer|hairpin|affinity\\stimeout|service\\.kubernetes\\.io|CLOSE_WAIT" skipRegex += "|EndpointSlice.should.support.a.Service.with.multiple" + skipRegex += "|internalTrafficPolicy|externallTrafficPolicy|only.terminating.endpoints" } else if networking.Kubenet != nil { skipRegex += "|Services.*affinity" }