Skip to content

Commit 5be4cc6

Browse files
authored
Merge pull request #45189 from windsonsea/autosc
Pick a few grammars in autoscaling.md
2 parents 0e1fa6f + 5827b37 commit 5be4cc6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/en/docs/concepts/workloads/autoscaling.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Kubernetes also supports _automatic scaling_ of workloads, which is the focus of
3838

3939
The concept of _Autoscaling_ in Kubernetes refers to the ability to automatically update an
4040
object that manages a set of Pods (for example a
41-
{{< glossary_tooltip text="Deployment" term_id="deployment" >}}.
41+
{{< glossary_tooltip text="Deployment" term_id="deployment" >}}).
4242

4343
### Scaling workloads horizontally
4444

@@ -55,7 +55,7 @@ There is a [walkthrough tutorial](/docs/tasks/run-application/horizontal-pod-aut
5555
{{< feature-state for_k8s_version="v1.25" state="stable" >}}
5656

5757
You can automatically scale a workload vertically using a _VerticalPodAutoscaler_ (VPA).
58-
Different to the HPA, the VPA doesn't come with Kubernetes by default, but is a separate project
58+
Unlike the HPA, the VPA doesn't come with Kubernetes by default, but is a separate project
5959
that can be found [on GitHub](https://github.com/kubernetes/autoscaler/tree/9f87b78df0f1d6e142234bb32e8acbd71295585a/vertical-pod-autoscaler).
6060

6161
Once installed, it allows you to create {{< glossary_tooltip text="CustomResourceDefinitions" term_id="customresourcedefinition" >}}
@@ -71,7 +71,7 @@ At the moment, the VPA can operate in four different modes:
7171
{{< table caption="Different modes of the VPA" >}}
7272
Mode | Description
7373
:----|:-----------
74-
`Auto` | Currently `Recreate`, might change to in-place updates in the future
74+
`Auto` | Currently, `Recreate` might change to in-place updates in the future
7575
`Recreate` | The VPA assigns resource requests on pod creation as well as updates them on existing pods by evicting them when the requested resources differ significantly from the new recommendation
7676
`Initial` | The VPA only assigns resource requests on pod creation and never changes them later.
7777
`Off` | The VPA does not automatically change the resource requirements of the pods. The recommendations are calculated and can be inspected in the VPA object.
@@ -82,7 +82,7 @@ Mode | Description
8282
{{< feature-state for_k8s_version="v1.27" state="alpha" >}}
8383

8484
Resizing a workload in-place **without** restarting the {{< glossary_tooltip text="Pods" term_id="pod" >}}
85-
or its {{< glossary_tooltip text="Containers" term_id="container" >}} requires Kubernetes version 1.27 or later.<br />
85+
or its {{< glossary_tooltip text="Containers" term_id="container" >}} requires Kubernetes version 1.27 or later.
8686
Additionally, the `InPlaceVerticalScaling` feature gate needs to be enabled.
8787

8888
{{< feature-gate-description name="InPlacePodVerticalScaling" >}}
@@ -91,7 +91,7 @@ Additionally, the `InPlaceVerticalScaling` feature gate needs to be enabled.
9191

9292
For workloads that need to be scaled based on the size of the cluster (for example
9393
`cluster-dns` or other system components), you can use the
94-
[_Cluster Proportional Autoscaler_](https://github.com/kubernetes-sigs/cluster-proportional-autoscaler).<br />
94+
[_Cluster Proportional Autoscaler_](https://github.com/kubernetes-sigs/cluster-proportional-autoscaler).
9595
Just like the VPA, it is not part of the Kubernetes core, but hosted as its
9696
own project on GitHub.
9797

0 commit comments

Comments
 (0)