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/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ The current default version is Vertical Pod Autoscaler 0.13.0
67
67
**NOTE:** In 0.13.0 we deprecate `autoscaling.k8s.io/v1beta2` API. We plan to
68
68
remove this API version. While for now you can continue to use `v1beta2` API we
69
69
recommend using `autoscaling.k8s.io/v1` instead. `v1` and `v1beta2` APIs are
70
-
almost identical (`v1` API has some fields which are not present in `v1beta2)
70
+
almost identical (`v1` API has some fields which are not present in `v1beta2`)
71
71
so simply changing which API version you're calling should be enough in almost
72
72
all cases.
73
73
@@ -307,7 +307,7 @@ You can then choose which recommender to use by setting `recommenders` inside th
307
307
308
308
309
309
### Custom memory bump-up after OOMKill
310
-
After an OOMKill event was observed, VPA increases the memory recommendation based on the observed memory usage in the event according to this formula: `recommendation = memory-usage-in-oomkill-event + max(oom-min-bump-up-bytes, memory-usage-in-oomkill-event * oom-bump-up-ratio)`.
310
+
After an OOMKill event was observed, VPA increases the memory recommendation based on the observed memory usage in the event according to this formula: `recommendation = memory-usage-in-oomkill-event + max(oom-min-bump-up-bytes, memory-usage-in-oomkill-event * oom-bump-up-ratio)`.
311
311
You can configure the minimum bump-up as well as the multiplier by specifying startup arguments for the recommender:
312
312
`oom-bump-up-ratio` specifies the memory bump up ratio when OOM occurred, default is `1.2`. This means, memory will be increased by 20% after an OOMKill event.
313
313
`oom-min-bump-up-bytes` specifies minimal increase of memory after observing OOM. Defaults to `100 * 1024 * 1024` (=100MiB)
@@ -324,8 +324,8 @@ Usage in recommender deployment
324
324
### Using CPU management with static policy
325
325
326
326
If you are using the [CPU management with static policy](https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/#static-policy) for some containers,
327
-
you probably want the CPU recommendation to be an integer. A dedicated recommendation pre-processor can perform a round up on the CPU recommendation. Recommendation capping still applies after the round up.
328
-
To activate this feature, pass the flag `--cpu-integer-post-processor-enabled` when you start the recommender.
327
+
you probably want the CPU recommendation to be an integer. A dedicated recommendation pre-processor can perform a round up on the CPU recommendation. Recommendation capping still applies after the round up.
328
+
To activate this feature, pass the flag `--cpu-integer-post-processor-enabled` when you start the recommender.
329
329
The pre-processor only acts on containers having a specific configuration. This configuration consists in an annotation on your VPA object for each impacted container.
0 commit comments