add a second, always ready node. Having healthy nodes shouldn't be a

problem for validation.
This commit is contained in:
Ted Hahn 2017-04-18 18:27:33 -07:00
parent 238a59d678
commit 395c7428ad
1 changed files with 5 additions and 0 deletions

View File

@ -196,6 +196,11 @@ func dummyClient(masterReady string, nodeReady string) kubernetes.Interface {
"kubernetes.io/role": "node",
NODE_READY: nodeReady,
},
{
"name": "node2",
"kubernetes.io/role": "node",
NODE_READY: "true",
},
},
))
}