Skip to content

Commit c41558e

Browse files
committed
VPA e2e tests check for non-0 minimal recommendation
The minimal values that were checked before are implementaion detail.
1 parent 33d398d commit c41558e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

vertical-pod-autoscaler/e2e/v1/full_vpa.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ import (
3434
)
3535

3636
const (
37-
minimalCPULowerBound = "20m"
37+
minimalCPULowerBound = "0m"
3838
minimalCPUUpperBound = "100m"
39-
minimalMemoryLowerBound = "20Mi"
39+
minimalMemoryLowerBound = "0Mi"
4040
minimalMemoryUpperBound = "300Mi"
4141
// the initial values should be outside minimal bounds
4242
initialCPU = int64(10) // mCPU

vertical-pod-autoscaler/e2e/v1beta2/full_vpa.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ import (
3434
)
3535

3636
const (
37-
minimalCPULowerBound = "20m"
37+
minimalCPULowerBound = "0m"
3838
minimalCPUUpperBound = "100m"
39-
minimalMemoryLowerBound = "20Mi"
39+
minimalMemoryLowerBound = "0Mi"
4040
minimalMemoryUpperBound = "300Mi"
4141
// the initial values should be outside minimal bounds
4242
initialCPU = int64(10) // mCPU

0 commit comments

Comments
 (0)