From 389b4776b21ce3f81425bf24a2b03f6f88e4accd Mon Sep 17 00:00:00 2001 From: Peter Rifel Date: Wed, 19 Jul 2023 07:15:50 -0500 Subject: [PATCH] Continue skipping SCTP tests for cilium until we upgrade to 1.13 --- tests/e2e/pkg/tester/skip_regex.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/e2e/pkg/tester/skip_regex.go b/tests/e2e/pkg/tester/skip_regex.go index ac9f12602060c..e2262c2bae8bc 100644 --- a/tests/e2e/pkg/tester/skip_regex.go +++ b/tests/e2e/pkg/tester/skip_regex.go @@ -67,8 +67,9 @@ func (t *Tester) setSkipRegexFlag() error { skipRegex += "|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 + // These may be fixed in Cilium 1.13 but skipping for now skipRegex += "|Service.with.multiple.ports.specified.in.multiple.EndpointSlices" + skipRegex += "|should.create.a.Pod.with.SCTP.HostPort" // https://github.com/cilium/cilium/issues/18241 skipRegex += "|Services.should.create.endpoints.for.unready.pods" skipRegex += "|Services.should.be.able.to.connect.to.terminating.and.unready.endpoints.if.PublishNotReadyAddresses.is.true"