mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-07 19:23:40 +00:00
Mark Daemon Set as Serial since it won't work in parallel.
Fixes #21767
This commit is contained in:
parent
83d74dd952
commit
b53144ec70
@ -48,7 +48,12 @@ const (
|
|||||||
daemonsetColorLabel = daemonsetLabelPrefix + "color"
|
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
|
var f *Framework
|
||||||
|
|
||||||
AfterEach(func() {
|
AfterEach(func() {
|
||||||
|
Loading…
Reference in New Issue
Block a user