Merge pull request #104441 from jsturtevant/small-resource-requests-for-hpa

test: e2e: HPA ContainerResource - Lower requests b/c multiple containers will leave pending pods on existing test infra
This commit is contained in:
Kubernetes Prow Robot 2021-08-20 04:35:24 -07:00 committed by GitHub
commit 64e422dc2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -229,14 +229,14 @@ func scaleOnIdleSideCar(name string, kind schema.GroupVersionKind, checkStabilit
}
scaleTest := &HPAContainerResourceScaleTest{
initPods: 1,
totalInitialCPUUsage: 250,
perContainerCPURequest: 500,
totalInitialCPUUsage: 125,
perContainerCPURequest: 250,
targetCPUUtilizationPercent: 20,
minPods: 1,
maxPods: 5,
firstScale: 3,
firstScaleStasis: stasis,
cpuBurst: 700,
cpuBurst: 500,
secondScale: 5,
sidecarStatus: e2eautoscaling.Enable,
sidecarType: e2eautoscaling.Idle,