Skip to content

Commit 38e0fc9

Browse files
authored
Merge pull request #8620 from ialidzhikov/enh/vpa-update-modes-docs
docs: Update VPA update mode docs
2 parents 6efaf9d + 1fc55be commit 38e0fc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vertical-pod-autoscaler/docs/quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ each controller that you want to have automatically computed resource requiremen
1414
This will be most commonly a **Deployment**.
1515
There are five modes in which *VPAs* operate:
1616

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
1818
them on existing pods using the preferred update mechanism. Currently, this is
1919
equivalent to `"Recreate"` (see below). **This mode is deprecated and will be removed in a future API version.**
2020
**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
2222
them on existing pods by evicting them when the requested resources differ significantly
2323
from the new recommendation (respecting the Pod Disruption Budget, if defined).
2424
This mode should be used rarely, only if you need to ensure that the pods are restarted
2525
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
2727
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.
2828
If `in-place` update fails, it falls back to evicting the pods, performing a _recreation_.
2929
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

Comments
 (0)