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.
This commit is contained in:
Maru Newby 2021-03-18 10:25:32 -07:00
parent 54449be031
commit 253df78f1b

View File

@ -69,11 +69,11 @@ var _ = SIGDescribe("Multi-AZ Clusters", func() {
cleanUp() 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()) 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"}) SpreadRCOrFail(f, int32(5*zoneCount), framework.ServeHostnameImage, []string{"serve-hostname"})
}) })
}) })