Skip to content

Commit 929e8a2

Browse files
committed
Fixed minor typo.
1 parent 6937928 commit 929e8a2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/en/docs/tasks/run-application/horizontal-pod-autoscale.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ or the custom metrics API (for all other metrics).
8888
The common use for HorizontalPodAutoscaler is to configure it to fetch metrics from
8989
{{< glossary_tooltip text="aggregated APIs" term_id="aggregation-layer" >}}
9090
(`metrics.k8s.io`, `custom.metrics.k8s.io`, or `external.metrics.k8s.io`). The `metrics.k8s.io` API is
91-
usually provided by an addon named Metrics Server, which needs to be launched separately.
91+
usually provided by an add-on named Metrics Server, which needs to be launched separately.
9292
For more information about resource metrics, see
9393
[Metrics Server](/docs/tasks/debug-application-cluster/resource-metrics-pipeline/#metrics-server).
9494

@@ -329,7 +329,7 @@ APIs, cluster administrators must ensure that:
329329
* The corresponding APIs are registered:
330330

331331
* For resource metrics, this is the `metrics.k8s.io` API, generally provided by [metrics-server](https://github.com/kubernetes-sigs/metrics-server).
332-
It can be launched as a cluster addon.
332+
It can be launched as a cluster add-on.
333333

334334
* For custom metrics, this is the `custom.metrics.k8s.io` API. It's provided by "adapter" API servers provided by metrics solution vendors.
335335
Check with your metrics pipeline to see if there is a Kubernetes metrics adapter available.
@@ -514,7 +514,7 @@ Finally, you can delete an autoscaler using `kubectl delete hpa`.
514514

515515
In addition, there is a special `kubectl autoscale` command for creating a HorizontalPodAutoscaler object.
516516
For instance, executing `kubectl autoscale rs foo --min=2 --max=5 --cpu-percent=80`
517-
will create an autoscaler for replication set *foo*, with target CPU utilization set to `80%`
517+
will create an autoscaler for ReplicaSet *foo*, with target CPU utilization set to `80%`
518518
and the number of replicas between 2 and 5.
519519

520520
## Implicit maintenance-mode deactivation
@@ -538,7 +538,7 @@ desired and could be troublesome when an HPA is active.
538538

539539
Keep in mind that the removal of `spec.replicas` may incur a one-time
540540
degradation of Pod counts as the default value of this key is 1 (reference
541-
[Deployment Replicas](/docs/concepts/workloads/controllers/deployment#replicas).
541+
[Deployment Replicas](/docs/concepts/workloads/controllers/deployment#replicas)).
542542
Upon the update, all Pods except 1 will begin their termination procedures. Any
543543
deployment application afterwards will behave as normal and respect a rolling
544544
update configuration as desired. You can avoid this degradation by choosing one of the following two

0 commit comments

Comments
 (0)