From 253df78f1bf7602e2844276e789c2cf31bd918bc Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Thu, 18 Mar 2021 10:25:32 -0700 Subject: [PATCH] Tag Multi-AZ scheduling tests as serial As per mdame, we can't ensure that the cluster is actually balanced if other tests are adding or deleting pods in parallel. --- test/e2e/scheduling/ubernetes_lite.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/scheduling/ubernetes_lite.go b/test/e2e/scheduling/ubernetes_lite.go index b11c6a28c02..4cd098a57fa 100644 --- a/test/e2e/scheduling/ubernetes_lite.go +++ b/test/e2e/scheduling/ubernetes_lite.go @@ -69,11 +69,11 @@ var _ = SIGDescribe("Multi-AZ Clusters", func() { cleanUp() } }) - ginkgo.It("should spread the pods of a service across zones", func() { + ginkgo.It("should spread the pods of a service across zones [Serial]", func() { SpreadServiceOrFail(f, 5*zoneCount, imageutils.GetPauseImageName()) }) - ginkgo.It("should spread the pods of a replication controller across zones", func() { + ginkgo.It("should spread the pods of a replication controller across zones [Serial]", func() { SpreadRCOrFail(f, int32(5*zoneCount), framework.ServeHostnameImage, []string{"serve-hostname"}) }) })