mirror of https://github.com/k3s-io/k3s
Merge pull request #72690 from Katharine/no-conformance-skips
Never skip multi-node conformance tests (instead just fail).pull/564/head
commit
8bce3620b0
|
@ -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}
|
||||||
|
|
Loading…
Reference in New Issue