Merge pull request #15807 from rifelpet/sctp-skip

Continue skipping SCTP HostPort tests in older k8s versions
This commit is contained in:
Kubernetes Prow Robot 2023-08-20 20:23:22 -07:00 committed by GitHub
commit 708ec09478
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -84,11 +84,17 @@ func (t *Tester) setSkipRegexFlag() error {
if isPre28 {
// 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"
}
if k8sVersion.Minor < 27 {
// Partially implemented in Cilium 1.13 but kops doesn't enable it
// Ref: https://github.com/cilium/cilium/pull/20033
// K8s 1.27+ added [Serial] to the test case, which is skipped by default
// Ref: https://github.com/kubernetes/kubernetes/pull/113335
skipRegex += "|should.create.a.Pod.with.SCTP.HostPort"
}
} else if networking.KubeRouter != nil {
skipRegex += "|load-balancer|hairpin|affinity\\stimeout|service\\.kubernetes\\.io|CLOSE_WAIT"
skipRegex += "|EndpointSlice.should.support.a.Service.with.multiple"