From 133177f0c11bbf73ba04cd62e6518a83114b103a Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Mon, 13 Dec 2021 12:16:45 +0200 Subject: [PATCH] Skip IPv6 LB test in the k/s e2e --- tests/e2e/pkg/tester/skip_regex.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/e2e/pkg/tester/skip_regex.go b/tests/e2e/pkg/tester/skip_regex.go index 26043e03f0..939e48a009 100644 --- a/tests/e2e/pkg/tester/skip_regex.go +++ b/tests/e2e/pkg/tester/skip_regex.go @@ -80,9 +80,8 @@ func (t *Tester) setSkipRegexFlag() error { skipRegex += "|In-tree.Volumes.\\[Driver:.gcepd\\].*topology.should.provision.a.volume.and.schedule.a.pod.with.AllowedTopologies" } - if cluster.Spec.CloudProvider == "aws" && utils.IsIPv6CIDR(cluster.Spec.NonMasqueradeCIDR) { - // AWS VPC Classic ELBs are IPv4 only - // ref: https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-internet-facing-load-balancers.html#internet-facing-ip-addresses + if strings.Contains(cluster.Spec.KubernetesVersion, "v1.23.") && cluster.Spec.CloudProvider == "aws" && utils.IsIPv6CIDR(cluster.Spec.NonMasqueradeCIDR) { + // ref: https://github.com/kubernetes/kubernetes/pull/106992 skipRegex += "|should.not.disrupt.a.cloud.load-balancer.s.connectivity.during.rollout" }