Merge pull request #75349 from brahmaroutu/cifailure_daemonset

Daemon Set Conformance test fails in CI process using ci-kubernetes-c…
This commit is contained in:
Kubernetes Prow Robot 2019-03-22 00:04:30 -07:00 committed by GitHub
commit dfe2e0e705
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -381,9 +381,8 @@ var _ = SIGDescribe("Daemon set [Serial]", func() {
rollback of updates to a DaemonSet.
*/
framework.ConformanceIt("should rollback without unnecessary restarts", func() {
if framework.TestContext.CloudConfig.NumNodes < 2 {
framework.Logf("Conformance test suite needs a cluster with at least 2 nodes.")
}
schedulableNodes := framework.GetReadySchedulableNodesOrDie(c)
Expect(len(schedulableNodes.Items)).To(BeNumerically(">", 1), "Conformance test suite needs a cluster with at least 2 nodes.")
framework.Logf("Create a RollingUpdate DaemonSet")
label := map[string]string{daemonsetNameLabel: dsName}
ds := newDaemonSet(dsName, image, label)
@ -421,7 +420,8 @@ var _ = SIGDescribe("Daemon set [Serial]", func() {
framework.Failf("unexpected pod found, image = %s", image)
}
}
if framework.TestContext.CloudConfig.NumNodes < 2 {
schedulableNodes = framework.GetReadySchedulableNodesOrDie(c)
if len(schedulableNodes.Items) < 2 {
Expect(len(existingPods)).To(Equal(0))
} else {
Expect(len(existingPods)).NotTo(Equal(0))