From b79691898661545a0951daab289f0481ebca53ba Mon Sep 17 00:00:00 2001 From: yliao Date: Wed, 6 Aug 2025 07:42:27 +0000 Subject: [PATCH] reduced numPods to 5 from 10 to fix flaky test (supports reusing resources) due to timeout. --- test/e2e/dra/dra.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/dra/dra.go b/test/e2e/dra/dra.go index 8fc52e88281..5dfd2e14cd3 100644 --- a/test/e2e/dra/dra.go +++ b/test/e2e/dra/dra.go @@ -706,7 +706,7 @@ var _ = framework.SIGDescribe("node")(framework.WithLabel("DRA"), func() { singleNodeTests := func(withKubelet bool) { nodes := drautils.NewNodes(f, 1, 1) maxAllocations := 1 - numPods := 10 + numPods := 5 driver := drautils.NewDriver(f, nodes, drautils.DriverResources(maxAllocations)) // All tests get their own driver instance. driver.WithKubelet = withKubelet b := drautils.NewBuilder(f, driver)