diff --git a/test/e2e/framework/test_context.go b/test/e2e/framework/test_context.go index 25b86b98a8a..70885bb0380 100644 --- a/test/e2e/framework/test_context.go +++ b/test/e2e/framework/test_context.go @@ -374,4 +374,8 @@ func AfterReadingAllFlags(t *TestContextType) { t.Host = defaultHost } } + // Allow 1% of nodes to be unready (statistically) - relevant for large clusters. + if t.AllowedNotReadyNodes == 0 { + t.AllowedNotReadyNodes = t.CloudConfig.NumNodes / 100 + } }