Skip to content

Commit 527c433

Browse files
authored
Merge pull request kubernetes#3209 from bskiba/e2e-min
VPA e2e tests check for non-0 minimal recommendation
2 parents 33d398d + c41558e commit 527c433

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)