mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 13:37:30 +00:00
test: retryable error in wait for ready nodes test
This commit is contained in:
parent
032a6fd494
commit
e67bce7077
@ -214,8 +214,12 @@ func CheckReadyForTests(c clientset.Interface, nonblockingTaints string, allowed
|
|||||||
}
|
}
|
||||||
allNodes, err := c.CoreV1().Nodes().List(context.TODO(), opts)
|
allNodes, err := c.CoreV1().Nodes().List(context.TODO(), opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
var terminalListNodesErr error
|
||||||
e2elog.Logf("Unexpected error listing nodes: %v", err)
|
e2elog.Logf("Unexpected error listing nodes: %v", err)
|
||||||
return false, err
|
if attempt >= 3 {
|
||||||
|
terminalListNodesErr = err
|
||||||
|
}
|
||||||
|
return false, terminalListNodesErr
|
||||||
}
|
}
|
||||||
for _, node := range allNodes.Items {
|
for _, node := range allNodes.Items {
|
||||||
if !readyForTests(&node, nonblockingTaints) {
|
if !readyForTests(&node, nonblockingTaints) {
|
||||||
|
Loading…
Reference in New Issue
Block a user