Skip to content

Commit 0b83311

Browse files
Run node pool tests serially
1 parent 34cc9c7 commit 0b83311

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/e2e/nodepool_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,9 @@ func executeNodePoolTests(t *testing.T, nodePoolTestCasesPerHostedCluster []Host
204204
if nodePoolTestCases.setup != nil {
205205
nodePoolTestCases.setup(t)
206206
}
207-
t.Parallel()
207+
// Run serially instead of in parallel as autoSizingReserved
208+
// requires higher system reserved resources for each node.
209+
// t.Parallel()
208210
clusterOpts := globalOpts.DefaultClusterOptions(t)
209211
// We set replicas to 0 in order to allow the inner tests to
210212
// create their own NodePools with the proper replicas

0 commit comments

Comments
 (0)