Unverified Commit 1d5dff0e authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #55426 from shyamjvs/disable-service-e2e-for-large-cluster

Automatic merge from submit-queue (batch tested with PRs 46581, 55426, 54849). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Disable service e2e test related to LB for huge clusters Based on https://github.com/kubernetes/kubernetes/issues/52495#issuecomment-343263564 /cc @MrHohn
parents c7644dd1 913721eb
...@@ -484,6 +484,11 @@ var _ = SIGDescribe("Services", func() { ...@@ -484,6 +484,11 @@ var _ = SIGDescribe("Services", func() {
It("should be able to change the type and ports of a service [Slow]", func() { It("should be able to change the type and ports of a service [Slow]", func() {
// requires cloud load-balancer support // requires cloud load-balancer support
framework.SkipUnlessProviderIs("gce", "gke", "aws") framework.SkipUnlessProviderIs("gce", "gke", "aws")
if framework.ProviderIs("gke", "gce") {
// Skipping this test for too large clusters due to issue #52495.
// TODO(MrHohn): Get rid of this when gce-side load-balancer improvements are done.
framework.SkipUnlessNodeCountIsAtMost(framework.GCPMaxInstancesInInstanceGroup)
}
loadBalancerSupportsUDP := !framework.ProviderIs("aws") loadBalancerSupportsUDP := !framework.ProviderIs("aws")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment