From 3eb990156979e2d929f24a9275369870d4c8f589 Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Sat, 8 Feb 2025 18:45:42 +0200 Subject: [PATCH] Skip failing test --- tests/e2e/pkg/tester/skip_regex.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/e2e/pkg/tester/skip_regex.go b/tests/e2e/pkg/tester/skip_regex.go index 32fc3547cd3ce..62cf5260d7020 100644 --- a/tests/e2e/pkg/tester/skip_regex.go +++ b/tests/e2e/pkg/tester/skip_regex.go @@ -110,6 +110,11 @@ func (t *Tester) setSkipRegexFlag() error { // Ref: https://github.com/kubernetes/kubernetes/issues/126903 skipRegex += "|KubeProxy.should.update.metric.for.tracking.accepted.packets.destined.for.localhost.nodeports" } + } else if networking.Flannel != nil { + if k8sVersion.Minor < 33 { + // < 33 so we look at this again + skipRegex += "|Services should implement NodePort and HealthCheckNodePort correctly when ExternalTrafficPolicy changes" + } } else if networking.KubeRouter != nil { skipRegex += "|should set TCP CLOSE_WAIT timeout|should check kube-proxy urls" } else if networking.Kubenet != nil {