Commit 8e9f8e26 authored by Katharine Berry's avatar Katharine Berry

Never skip multi-node conformance tests (instead just fail).

parent 8743a0e3
...@@ -374,8 +374,9 @@ var _ = SIGDescribe("Daemon set [Serial]", func() { ...@@ -374,8 +374,9 @@ var _ = SIGDescribe("Daemon set [Serial]", func() {
rollback of updates to a DaemonSet. rollback of updates to a DaemonSet.
*/ */
framework.ConformanceIt("should rollback without unnecessary restarts", func() { framework.ConformanceIt("should rollback without unnecessary restarts", func() {
// Skip clusters with only one node, where we cannot have half-done DaemonSet rollout for this test if framework.TestContext.CloudConfig.NumNodes < 2 {
framework.SkipUnlessNodeCountIsAtLeast(2) framework.Logf("Conformance test suite needs a cluster with at least 2 nodes.")
}
framework.Logf("Create a RollingUpdate DaemonSet") framework.Logf("Create a RollingUpdate DaemonSet")
label := map[string]string{daemonsetNameLabel: dsName} label := map[string]string{daemonsetNameLabel: dsName}
......
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