You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(vpa): Label InPlaceOrRecreate mode as an alpha feature in quick start guide
This commit adds a dedicated `alpha feature` suffix to `InPlaceOrRecreate`
updateMode to indicate that the option is not available by default and
requires additional setup to enable it.
Also:
- Include reference to the `features.md` documentation to bring
additional context to the reader and point them to the feature
details.
Copy file name to clipboardExpand all lines: vertical-pod-autoscaler/docs/quickstart.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,10 @@ There are five modes in which *VPAs* operate:
22
22
from the new recommendation (respecting the Pod Disruption Budget, if defined).
23
23
This mode should be used rarely, only if you need to ensure that the pods are restarted
24
24
whenever the resource request changes.
25
-
-`"InPlaceOrRecreate"`: VPA assigns resource requests on pod creation as well as updates
25
+
-`"InPlaceOrRecreate"`[__alpha feature__]: VPA assigns resource requests on pod creation as well as updates
26
26
them on existing pods by leveraging [Kubernetes `in-place` update](https://kubernetes.io/blog/2025/05/16/kubernetes-v1-33-in-place-pod-resize-beta/) capability.
27
27
If `in-place` update fails, it falls back to evicting the pods, performing a _recreation_.
28
+
For more details, see the [In-Place Updates documentation](https://github.com/kubernetes/autoscaler/blob/master/vertical-pod-autoscaler/docs/features.md#in-place-updates-inplaceorrecreate).
28
29
-`"Initial"`: VPA only assigns resource requests on pod creation and never changes them
29
30
later.
30
31
-`"Off"`: VPA does not automatically change the resource requirements of the pods.
0 commit comments