mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 13:37:30 +00:00
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
This commit is contained in:
commit
1d5dff0e05
@ -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")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user