mirror of https://github.com/kubernetes/kops.git
Skip UDP LoadBalancer test on k8s 1.26
This commit is contained in:
parent
9e0db3db74
commit
de8b406793
|
@ -51,14 +51,15 @@ func (t *Tester) setSkipRegexFlag() error {
|
||||||
|
|
||||||
skipRegex := skipRegexBase
|
skipRegex := skipRegexBase
|
||||||
|
|
||||||
if isPre28 {
|
if k8sVersion.Minor == 26 && cluster.Spec.LegacyCloudProvider == "aws" {
|
||||||
// All the loadbalancer tests in the suite fail on IPv6, however,
|
// This test was introduced in k8s 1.26
|
||||||
// they were skipped because they were tagged as [Slow]
|
// and skipped automatically for AWS clusters as of k8s 1.27
|
||||||
// skip these tests temporary since they fail always on IPv6
|
// because Classic Load Balancers dont support UDP
|
||||||
// TODO: aojea
|
// https://github.com/kubernetes/kubernetes/pull/113650
|
||||||
// https://github.com/kubernetes/kubernetes/issues/113964
|
// https://github.com/kubernetes/kubernetes/pull/115977
|
||||||
skipRegex += "|LoadBalancers.should.be.able.to.preserve.UDP.traffic"
|
skipRegex += "|LoadBalancers.should.be.able.to.preserve.UDP.traffic"
|
||||||
} else {
|
}
|
||||||
|
if !isPre28 {
|
||||||
// K8s 1.28 promoted ProxyTerminatingEndpoints to GA, but it has limited CNI support
|
// K8s 1.28 promoted ProxyTerminatingEndpoints to GA, but it has limited CNI support
|
||||||
// https://github.com/kubernetes/kubernetes/pull/117718
|
// https://github.com/kubernetes/kubernetes/pull/117718
|
||||||
// https://github.com/cilium/cilium/issues/27358
|
// https://github.com/cilium/cilium/issues/27358
|
||||||
|
|
Loading…
Reference in New Issue