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
Copy file name to clipboardExpand all lines: vertical-pod-autoscaler/docs/quickstart.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,16 +14,16 @@ each controller that you want to have automatically computed resource requiremen
14
14
This will be most commonly a **Deployment**.
15
15
There are five modes in which *VPAs* operate:
16
16
17
-
-`"Auto"`(**Deprecated**): VPA assigns resource requests on pod creation as well as updates
17
+
-`"Auto"`[__deprecated__]: VPA assigns resource requests on pod creation as well as updates
18
18
them on existing pods using the preferred update mechanism. Currently, this is
19
19
equivalent to `"Recreate"` (see below). **This mode is deprecated and will be removed in a future API version.**
20
20
**Use explicit modes like "Recreate", "Initial", or "InPlaceOrRecreate" instead.**
21
-
-`"Recreate"`: VPA assigns resource requests on pod creation as well as updates
21
+
-`"Recreate"`[__default__]: VPA assigns resource requests on pod creation as well as updates
22
22
them on existing pods by evicting them when the requested resources differ significantly
23
23
from the new recommendation (respecting the Pod Disruption Budget, if defined).
24
24
This mode should be used rarely, only if you need to ensure that the pods are restarted
25
25
whenever the resource request changes.
26
-
-`"InPlaceOrRecreate"`[__alpha feature__]: VPA assigns resource requests on pod creation as well as updates
26
+
-`"InPlaceOrRecreate"`[__beta feature__]: VPA assigns resource requests on pod creation as well as updates
27
27
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.
28
28
If `in-place` update fails, it falls back to evicting the pods, performing a _recreation_.
29
29
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).
0 commit comments