Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions openshift-hack/e2e/annotate/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,6 @@ var (
`Clean up pods on node`, // schedules up to max pods per node
`DynamicProvisioner should test that deleting a claim before the volume is provisioned deletes the volume`, // test is very disruptive to other tests

`Multi-AZ Clusters should spread the pods of a service across zones`, // spreading is a priority, not a predicate, and if the node is temporarily full the priority will be ignored

`Should be able to support the 1\.7 Sample API Server using the current Aggregator`, // down apiservices break other clients today https://bugzilla.redhat.com/show_bug.cgi?id=1623195

`\[Feature:HPA\] Horizontal pod autoscaling \(scale resource: CPU\) \[sig-autoscaling\] ReplicationController light Should scale from 1 pod to 2 pods`,
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/scheduling/ubernetes_lite.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"})
})
})
Expand Down