Disable service e2e on type and port change for huge clusters

This commit is contained in:
Shyam Jeedigunta 2017-11-09 20:30:45 +01:00
parent e873b36a44
commit 913721ebee

View File

@ -484,6 +484,11 @@ var _ = SIGDescribe("Services", func() {
It("should be able to change the type and ports of a service [Slow]", func() {
// requires cloud load-balancer support
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")