From 3a76c95f8e07a4f52ddde46cc1844b95cac9c13f Mon Sep 17 00:00:00 2001 From: michael mccune Date: Wed, 22 Feb 2023 17:08:57 -0500 Subject: [PATCH] remove aws from e2e loadbalancer udp conntrack tests These tests are not working as expected on AWS due to the requirement for the user to add an annotation to the UDP Service created. --- test/e2e/network/loadbalancer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/network/loadbalancer.go b/test/e2e/network/loadbalancer.go index 2431f22f4d1..dc4ea3cba73 100644 --- a/test/e2e/network/loadbalancer.go +++ b/test/e2e/network/loadbalancer.go @@ -1018,7 +1018,7 @@ var _ = common.SIGDescribe("LoadBalancers", func() { ginkgo.It("should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on different nodes", func(ctx context.Context) { // requires cloud load-balancer support - e2eskipper.SkipUnlessProviderIs("gce", "gke", "aws", "azure") + e2eskipper.SkipUnlessProviderIs("gce", "gke", "azure") ns := f.Namespace.Name nodes, err := e2enode.GetBoundedReadySchedulableNodes(ctx, cs, 2) framework.ExpectNoError(err) @@ -1150,7 +1150,7 @@ var _ = common.SIGDescribe("LoadBalancers", func() { ginkgo.It("should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on the same nodes", func(ctx context.Context) { // requires cloud load-balancer support - e2eskipper.SkipUnlessProviderIs("gce", "gke", "aws", "azure") + e2eskipper.SkipUnlessProviderIs("gce", "gke", "azure") ns := f.Namespace.Name nodes, err := e2enode.GetBoundedReadySchedulableNodes(ctx, cs, 1) framework.ExpectNoError(err)