Commit e7e404b6 authored by Saad Ali's avatar Saad Ali

Merge pull request #22219 from mml/cereal-eyes

Mark Daemon Set as Serial since it won't work in parallel.
parents 83d74dd9 b53144ec
......@@ -48,7 +48,12 @@ const (
daemonsetColorLabel = daemonsetLabelPrefix + "color"
)
var _ = Describe("Daemon set", func() {
// This test must be run in serial because it assumes the Daemon Set pods will
// always get scheduled. If we run other tests in parallel, this may not
// happen. In the future, running in parallel may work if we have an eviction
// model which lets the DS controller kick out other pods to make room.
// See http://issues.k8s.io/21767 for more details
var _ = Describe("Daemon set [Serial]", func() {
var f *Framework
AfterEach(func() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment