fix(vpa): use integer cpu values for VPA minAllowed/maxAllowed to comply with k8s spec

This commit is contained in:
Nicolas 2025-07-24 17:55:05 +08:00
parent b1d3d58269
commit 19c82aff7a

View File

@ -120,12 +120,12 @@ reconciler:
vpa:
minAllowed:
enabled: false
cpu: "0.1"
memory: "64Mi"
cpu: 1
memory: 64Mi
maxAllowed:
enabled: true
cpu: "0.2"
memory: "128Mi"
cpu: 2
memory: 128Mi
controlledResources:
- cpu
- memory