Skip to content

Commit de034db

Browse files
authored
Merge pull request #5823 from Shubham82/typo_fix_VPA
Fixed Typo and Trailing-whitespace
2 parents 18867db + 615937a commit de034db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vertical-pod-autoscaler/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The current default version is Vertical Pod Autoscaler 0.13.0
6767
**NOTE:** In 0.13.0 we deprecate `autoscaling.k8s.io/v1beta2` API. We plan to
6868
remove this API version. While for now you can continue to use `v1beta2` API we
6969
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`)
7171
so simply changing which API version you're calling should be enough in almost
7272
all cases.
7373

@@ -307,7 +307,7 @@ You can then choose which recommender to use by setting `recommenders` inside th
307307

308308

309309
### 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)`.
311311
You can configure the minimum bump-up as well as the multiplier by specifying startup arguments for the recommender:
312312
`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.
313313
`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
324324
### Using CPU management with static policy
325325

326326
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.
329329
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.
330330
The annotation format is the following:
331331
```

0 commit comments

Comments
 (0)