Skip to content

Commit

Permalink
Skip UDP LoadBalancer test on older k8s versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rifelpet committed Aug 26, 2023
1 parent 9e0db3d commit 4ca01f8
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions tests/e2e/pkg/tester/skip_regex.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,13 @@ func (t *Tester) setSkipRegexFlag() error {

skipRegex := skipRegexBase

if isPre28 {
// All the loadbalancer tests in the suite fail on IPv6, however,
// they were skipped because they were tagged as [Slow]
// skip these tests temporary since they fail always on IPv6
// TODO: aojea
// https://github.com/kubernetes/kubernetes/issues/113964
if k8sVersion.Minor < 27 && cluster.Spec.LegacyCloudProvider == "aws" {
// This test is skipped automatically for AWS clusters as of k8s 1.27
// Because Classic Load Balancers dont support UDP
// https://github.com/kubernetes/kubernetes/pull/115977
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
// https://github.com/kubernetes/kubernetes/pull/117718
// https://github.com/cilium/cilium/issues/27358
Expand Down

0 comments on commit 4ca01f8

Please sign in to comment.