Skip to content

Commit 413c81a

Browse files
authored
Merge pull request kubernetes#90171 from kubernetes/revert-89421-disabled_for_large_cluster
Revert "Remove the 'DisabledForLargeClusters' tags from LB network tests."
2 parents 5ccc6e0 + 5dca58d commit 413c81a

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

test/e2e/network/service.go

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,8 @@ var _ = SIGDescribe("Services", func() {
11511151
framework.ExpectNoError(err)
11521152
})
11531153

1154-
ginkgo.It("should be able to change the type and ports of a service [Slow]", func() {
1154+
// TODO: Get rid of [DisabledForLargeClusters] tag when issue #56138 is fixed.
1155+
ginkgo.It("should be able to change the type and ports of a service [Slow] [DisabledForLargeClusters]", func() {
11551156
// requires cloud load-balancer support
11561157
e2eskipper.SkipUnlessProviderIs("gce", "gke", "aws")
11571158

@@ -2450,8 +2451,9 @@ var _ = SIGDescribe("Services", func() {
24502451
execAffinityTestForNonLBServiceWithTransition(f, cs, svc)
24512452
})
24522453

2454+
// TODO: Get rid of [DisabledForLargeClusters] tag when issue #56138 is fixed.
24532455
// [LinuxOnly]: Windows does not support session affinity.
2454-
ginkgo.It("should have session affinity work for LoadBalancer service with ESIPP on [Slow] [LinuxOnly]", func() {
2456+
ginkgo.It("should have session affinity work for LoadBalancer service with ESIPP on [Slow] [DisabledForLargeClusters] [LinuxOnly]", func() {
24552457
// L4 load balancer affinity `ClientIP` is not supported on AWS ELB.
24562458
e2eskipper.SkipIfProviderIs("aws")
24572459

@@ -2461,8 +2463,9 @@ var _ = SIGDescribe("Services", func() {
24612463
execAffinityTestForLBService(f, cs, svc)
24622464
})
24632465

2466+
// TODO: Get rid of [DisabledForLargeClusters] tag when issue #56138 is fixed.
24642467
// [LinuxOnly]: Windows does not support session affinity.
2465-
ginkgo.It("should be able to switch session affinity for LoadBalancer service with ESIPP on [Slow] [LinuxOnly]", func() {
2468+
ginkgo.It("should be able to switch session affinity for LoadBalancer service with ESIPP on [Slow] [DisabledForLargeClusters] [LinuxOnly]", func() {
24662469
// L4 load balancer affinity `ClientIP` is not supported on AWS ELB.
24672470
e2eskipper.SkipIfProviderIs("aws")
24682471

@@ -2472,8 +2475,9 @@ var _ = SIGDescribe("Services", func() {
24722475
execAffinityTestForLBServiceWithTransition(f, cs, svc)
24732476
})
24742477

2478+
// TODO: Get rid of [DisabledForLargeClusters] tag when issue #56138 is fixed.
24752479
// [LinuxOnly]: Windows does not support session affinity.
2476-
ginkgo.It("should have session affinity work for LoadBalancer service with ESIPP off [Slow] [LinuxOnly]", func() {
2480+
ginkgo.It("should have session affinity work for LoadBalancer service with ESIPP off [Slow] [DisabledForLargeClusters] [LinuxOnly]", func() {
24772481
// L4 load balancer affinity `ClientIP` is not supported on AWS ELB.
24782482
e2eskipper.SkipIfProviderIs("aws")
24792483

@@ -2483,8 +2487,9 @@ var _ = SIGDescribe("Services", func() {
24832487
execAffinityTestForLBService(f, cs, svc)
24842488
})
24852489

2490+
// TODO: Get rid of [DisabledForLargeClusters] tag when issue #56138 is fixed.
24862491
// [LinuxOnly]: Windows does not support session affinity.
2487-
ginkgo.It("should be able to switch session affinity for LoadBalancer service with ESIPP off [Slow] [LinuxOnly]", func() {
2492+
ginkgo.It("should be able to switch session affinity for LoadBalancer service with ESIPP off [Slow] [DisabledForLargeClusters] [LinuxOnly]", func() {
24882493
// L4 load balancer affinity `ClientIP` is not supported on AWS ELB.
24892494
e2eskipper.SkipIfProviderIs("aws")
24902495

@@ -2836,7 +2841,8 @@ var _ = SIGDescribe("Services", func() {
28362841
})
28372842
})
28382843

2839-
var _ = SIGDescribe("ESIPP [Slow]", func() {
2844+
// TODO: Get rid of [DisabledForLargeClusters] tag when issue #56138 is fixed.
2845+
var _ = SIGDescribe("ESIPP [Slow] [DisabledForLargeClusters]", func() {
28402846
f := framework.NewDefaultFramework("esipp")
28412847
var loadBalancerCreateTimeout time.Duration
28422848

0 commit comments

Comments
 (0)