Skip to content

Commit dc530ff

Browse files
committed
cluster-autoscaling -> node-autoscaling clean-up
301 redirect added, and a bunch of references on other pages renamed.
1 parent 7c99a67 commit dc530ff

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

content/en/docs/concepts/architecture/nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Learn more about the following:
357357
* [Node](https://git.k8s.io/design-proposals-archive/architecture/architecture.md#the-kubernetes-node)
358358
section of the architecture design document.
359359
* [Graceful/non-graceful node shutdown](/docs/concepts/cluster-administration/node-shutdown/).
360-
* [Cluster autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling/) to
360+
* [Node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/) to
361361
manage the number and size of nodes in your cluster.
362362
* [Taints and Tolerations](/docs/concepts/scheduling-eviction/taint-and-toleration/).
363363
* [Node Resource Managers](/docs/concepts/policy/node-resource-managers/).

content/en/docs/concepts/cluster-administration/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Before choosing a guide, here are some considerations:
5252
## Managing a cluster
5353

5454
* Learn how to [manage nodes](/docs/concepts/architecture/nodes/).
55-
* Read about [cluster autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling/).
55+
* Read about [Node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/).
5656

5757
* Learn how to set up and manage the [resource quota](/docs/concepts/policy/resource-quotas/) for shared clusters.
5858

content/en/docs/concepts/containers/images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ common use cases and suggested solutions.
466466
- Or, run an internal private registry behind your firewall with open read access.
467467
- No Kubernetes configuration is required.
468468
- Use a hosted container image registry service that controls image access
469-
- It will work better with cluster autoscaling than manual node configuration.
469+
- It will work better with Node autoscaling than manual node configuration.
470470
- Or, on a cluster where changing the node configuration is inconvenient, use `imagePullSecrets`.
471471
1. Cluster with proprietary images, a few of which require stricter access control.
472472
- Ensure [AlwaysPullImages admission controller](/docs/reference/access-authn-authz/admission-controllers/#alwayspullimages)

content/en/docs/concepts/scheduling-eviction/topology-spread-constraints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ section of the enhancement proposal about Pod topology spread constraints.
618618
because, in this case, those topology domains won't be considered until there is
619619
at least one node in them.
620620

621-
You can work around this by using a cluster autoscaling tool that is aware of
621+
You can work around this by using a Node autoscaler that is aware of
622622
Pod topology spread constraints and is also aware of the overall set of topology
623623
domains.
624624

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ its [`Cron` scaler](https://keda.sh/docs/latest/scalers/cron/). The `Cron` scale
129129
If scaling workloads isn't enough to meet your needs, you can also scale your cluster infrastructure itself.
130130

131131
Scaling the cluster infrastructure normally means adding or removing {{< glossary_tooltip text="nodes" term_id="node" >}}.
132-
Read [cluster autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling/)
132+
Read [Node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/)
133133
for more information.
134134

135135
## {{% heading "whatsnext" %}}
@@ -139,4 +139,4 @@ for more information.
139139
- [HorizontalPodAutoscaler Walkthrough](/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/)
140140
- [Resize Container Resources In-Place](/docs/tasks/configure-pod-container/resize-container-resources/)
141141
- [Autoscale the DNS Service in a Cluster](/docs/tasks/administer-cluster/dns-horizontal-autoscaling/)
142-
- Learn about [cluster autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling/)
142+
- Learn about [Node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/)

content/en/docs/concepts/workloads/pods/disruptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Cluster administrator actions include:
4949

5050
- [Draining a node](/docs/tasks/administer-cluster/safely-drain-node/) for repair or upgrade.
5151
- Draining a node from a cluster to scale the cluster down (learn about
52-
[Cluster Autoscaling](https://github.com/kubernetes/autoscaler/#readme)).
52+
[Node Autoscaling]((/docs/concepts/cluster-administration/node-autoscaling/)).
5353
- Removing a pod from a node to permit something else to fit on that node.
5454

5555
These actions might be taken directly by the cluster administrator, or by automation

content/en/docs/setup/best-practices/cluster-large.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Learn more about [Vertical Pod Autoscaler](https://github.com/kubernetes/autosca
121121
and how you can use it to scale cluster
122122
components, including cluster-critical addons.
123123

124-
* Read about [cluster autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling/)
124+
* Read about [Node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/)
125125

126126
* The [addon resizer](https://github.com/kubernetes/autoscaler/tree/master/addon-resizer#readme)
127127
helps you in resizing the addons automatically as your cluster's scale changes.

content/en/docs/setup/production-environment/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ simply as *nodes*).
183183
to help determine how many nodes you need, based on the number of pods and
184184
containers you need to run. If you are managing nodes yourself, this can mean
185185
purchasing and installing your own physical equipment.
186-
- *Autoscale nodes*: Read [Cluster Autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling) to learn about the
186+
- *Autoscale nodes*: Read [Node Autoscaling](/docs/concepts/cluster-administration/node-autoscaling) to learn about the
187187
tools available to automatically manage your nodes and the capacity they
188188
provide.
189189
- *Set up node health checks*: For important workloads, you want to make sure

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ guidelines, which cover this exact use case.
597597
## {{% heading "whatsnext" %}}
598598

599599
If you configure autoscaling in your cluster, you may also want to consider using
600-
[cluster autoscaling](/docs/concepts/cluster-administration/cluster-autoscaling/)
600+
[node autoscaling](/docs/concepts/cluster-administration/node-autoscaling/)
601601
to ensure you are running the right number of nodes.
602602

603603
For more information on HorizontalPodAutoscaler:

static/_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
/docs/concepts/cluster-administration/access-cluster/ /docs/tasks/access-application-cluster/access-cluster/ 301
5555
/docs/concepts/cluster-administration/audit/ /docs/tasks/debug/debug-cluster/audit/ 301
5656
/docs/concepts/cluster-administration/authenticate-across-clusters-kubeconfig /docs/tasks/access-application-cluster/authenticate-across-clusters-kubeconfig/ 301
57+
/docs/concepts/cluster-administration/cluster-autoscaling/ /docs/concepts/cluster-administration/node-autoscaling/ 301
5758
/docs/concepts/cluster-administration/cluster-management/ /docs/tasks/administer-cluster/ 302
5859
/docs/concepts/cluster-administration/configure-etcd/ /docs/tasks/administer-cluster/configure-upgrade-etcd/ 301
5960
/docs/concepts/cluster-administration/device-plugins/ /docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/ 301

0 commit comments

Comments
 (0)