From a4e94d548719dfcc4bdc9ef432c441d552e00148 Mon Sep 17 00:00:00 2001 From: Peter Rifel Date: Thu, 16 Mar 2023 22:47:14 -0500 Subject: [PATCH] Skip multiple-port multiple-endpointslice e2e test with Cilium This job is failing, skipping until we're upgraded to 1.13 to see if that fixes the failing test --- tests/e2e/pkg/tester/skip_regex.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/e2e/pkg/tester/skip_regex.go b/tests/e2e/pkg/tester/skip_regex.go index b737ab89e8..8dd7d9e680 100644 --- a/tests/e2e/pkg/tester/skip_regex.go +++ b/tests/e2e/pkg/tester/skip_regex.go @@ -66,6 +66,8 @@ func (t *Tester) setSkipRegexFlag() error { skipRegex += "|same.port.number.but.different.protocols|same.hostPort.but.different.hostIP.and.protocol" // https://github.com/cilium/cilium/issues/9207 skipRegex += "|serve.endpoints.on.same.port.and.different.protocols" + // This may be fixed in Cilium 1.13 but skipping for now + skipRegex += "|Service.with.multiple.ports.specified.in.multiple.EndpointSlices" if k8sVersion.Minor >= 22 { // ref: // https://github.com/kubernetes/kubernetes/issues/96717