mirror of https://github.com/k3s-io/k3s
test/e2e: up the timeout on AllNodesReady
Signed-off-by: Jess Frazelle <me@jessfraz.com>pull/6/head
parent
e7e9587799
commit
6f045ff415
|
@ -414,7 +414,7 @@ func (f *Framework) AfterEach() {
|
|||
// Check whether all nodes are ready after the test.
|
||||
// This is explicitly done at the very end of the test, to avoid
|
||||
// e.g. not removing namespace in case of this failure.
|
||||
if err := AllNodesReady(f.Client, time.Minute); err != nil {
|
||||
if err := AllNodesReady(f.Client, 3*time.Minute); err != nil {
|
||||
Failf("All nodes should be ready after test, %v", err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue