diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 7540727613f2e..8396499d763db 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -4011,7 +4011,11 @@ func AllNodesReady(c clientset.Interface, timeout time.Duration) error { } if len(notReady) > TestContext.AllowedNotReadyNodes || !allowedNotReadyReasons(notReady) { - return fmt.Errorf("Not ready nodes: %#v", notReady) + msg := "" + for _, node := range notReady { + msg = fmt.Sprintf("%s, %s", msg, node.Name) + } + return fmt.Errorf("Not ready nodes: %#v", msg) } return nil }