@@ -88,7 +88,7 @@ or the custom metrics API (for all other metrics).
88
88
The common use for HorizontalPodAutoscaler is to configure it to fetch metrics from
89
89
{{< glossary_tooltip text="aggregated APIs" term_id="aggregation-layer" >}}
90
90
(` 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.
92
92
For more information about resource metrics, see
93
93
[ Metrics Server] ( /docs/tasks/debug-application-cluster/resource-metrics-pipeline/#metrics-server ) .
94
94
@@ -329,7 +329,7 @@ APIs, cluster administrators must ensure that:
329
329
* The corresponding APIs are registered:
330
330
331
331
* 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 .
333
333
334
334
* For custom metrics, this is the `custom.metrics.k8s.io` API. It's provided by "adapter" API servers provided by metrics solution vendors.
335
335
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`.
514
514
515
515
In addition, there is a special `kubectl autoscale` command for creating a HorizontalPodAutoscaler object.
516
516
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%`
518
518
and the number of replicas between 2 and 5.
519
519
520
520
# # Implicit maintenance-mode deactivation
@@ -538,7 +538,7 @@ desired and could be troublesome when an HPA is active.
538
538
539
539
Keep in mind that the removal of `spec.replicas` may incur a one-time
540
540
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)) .
542
542
Upon the update, all Pods except 1 will begin their termination procedures. Any
543
543
deployment application afterwards will behave as normal and respect a rolling
544
544
update configuration as desired. You can avoid this degradation by choosing one of the following two
0 commit comments