From 7dace2d4e0346c8d278884a10119c9da9b3543a2 Mon Sep 17 00:00:00 2001 From: bishal7679 Date: Tue, 17 Mar 2026 23:26:12 +0530 Subject: [PATCH] revert podCPURequest to 200m --- test/e2e/autoscaling/horizontal_pod_autoscaling_behavior.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/autoscaling/horizontal_pod_autoscaling_behavior.go b/test/e2e/autoscaling/horizontal_pod_autoscaling_behavior.go index 36ba5664a89..c114515dd7e 100644 --- a/test/e2e/autoscaling/horizontal_pod_autoscaling_behavior.go +++ b/test/e2e/autoscaling/horizontal_pod_autoscaling_behavior.go @@ -550,7 +550,7 @@ var _ = SIGDescribe(feature.HPA, framework.WithSlow(), framework.WithFeatureGate ginkgo.It("should scale up but should not scale down", func(ctx context.Context) { ginkgo.By("setting up resource consumer and HPA") initPods := 10 - podCPURequest := 500 + podCPURequest := 200 targetCPUUtilizationPercent := 60 // Compute initial load for 10 pods. initCPUUsageTotal := usageForReplicasWithRequest(initPods, podCPURequest, targetCPUUtilizationPercent)