$ rosa create cluster --cluster-name <cluster_name> --enable-autoscaling --interactive
Applying autoscaling to Red Hat OpenShift Service on AWS clusters involves configuring a cluster autoscaler and then configuring a machine autoscaler for at least one machine pool in your cluster.
You can configure the cluster autoscaler only in clusters where the machine API is operational. Only one cluster autoscaler can be created per cluster. |
The cluster autoscaler adjusts the size of an Red Hat OpenShift Service on AWS cluster to meet its current deployment needs. It uses declarative, Kubernetes-style arguments to provide infrastructure management that does not rely on objects of a specific cloud provider. The cluster autoscaler has a cluster scope, and is not associated with a particular namespace.
The cluster autoscaler increases the size of the cluster when there are pods that fail to schedule on any of the current worker nodes due to insufficient resources or when another node is necessary to meet deployment needs. The cluster autoscaler does not increase the cluster resources beyond the limits that you specify.
The cluster autoscaler computes the total memory and CPU on all nodes the cluster, even though it does not manage the control plane nodes. These values are not single-machine oriented. They are an aggregation of all the resources in the entire cluster. For example, if you set the maximum memory resource limit, the cluster autoscaler includes all the nodes in the cluster when calculating the current memory usage. That calculation is then used to determine if the cluster autoscaler has the capacity to add more worker resources.
Ensure that the |
Every 10 seconds, the cluster autoscaler checks which nodes are unnecessary in the cluster and removes them. The cluster autoscaler considers a node for removal if the following conditions apply:
The node utilization is less than the node utilization level threshold for the cluster. The node utilization level is the sum of the requested resources divided by the allocated resources for the node. If you do not specify a value in the ClusterAutoscaler
custom resource, the cluster autoscaler uses a default value of 0.5
, which corresponds to 50% utilization.
The cluster autoscaler can move all pods running on the node to the other nodes. The Kubernetes scheduler is responsible for scheduling pods on the nodes.
The cluster autoscaler does not have scale down disabled annotation.
If the following types of pods are present on a node, the cluster autoscaler will not remove the node:
Pods with restrictive pod disruption budgets (PDBs).
Kube-system pods that do not run on the node by default.
Kube-system pods that do not have a PDB or have a PDB that is too restrictive.
Pods that are not backed by a controller object such as a deployment, replica set, or stateful set.
Pods with local storage.
Pods that cannot be moved elsewhere because of a lack of resources, incompatible node selectors or affinity, matching anti-affinity, and so on.
Unless they also have a "cluster-autoscaler.kubernetes.io/safe-to-evict": "true"
annotation, pods that have a "cluster-autoscaler.kubernetes.io/safe-to-evict": "false"
annotation.
For example, you set the maximum CPU limit to 64 cores and configure the cluster autoscaler to only create machines that have 8 cores each. If your cluster starts with 30 cores, the cluster autoscaler can add up to 4 more nodes with 32 cores, for a total of 62.
If you configure the cluster autoscaler, additional usage restrictions apply:
Do not modify the nodes that are in autoscaled node groups directly. All nodes within the same node group have the same capacity and labels and run the same system pods.
Specify requests for your pods.
If you have to prevent pods from being deleted too quickly, configure appropriate PDBs.
Confirm that your cloud provider quota is large enough to support the maximum node pools that you configure.
Do not run additional node group autoscalers, especially the ones offered by your cloud provider.
The horizontal pod autoscaler (HPA) and the cluster autoscaler modify cluster resources in different ways. The HPA changes the deployment’s or replica set’s number of replicas based on the current CPU load. If the load increases, the HPA creates new replicas, regardless of the amount of resources available to the cluster. If there are not enough resources, the cluster autoscaler adds resources so that the HPA-created pods can run. If the load decreases, the HPA stops some replicas. If this action causes some nodes to be underutilized or completely empty, the cluster autoscaler deletes the unnecessary nodes.
The cluster autoscaler takes pod priorities into account. The Pod Priority and Preemption feature enables scheduling pods based on priorities if the cluster does not have enough resources, but the cluster autoscaler ensures that the cluster has resources to run all pods. To honor the intention of both features, the cluster autoscaler includes a priority cutoff function. You can use this cutoff to schedule "best-effort" pods, which do not cause the cluster autoscaler to increase resources but instead run only when spare resources are available.
Pods with priority lower than the cutoff value do not cause the cluster to scale up or prevent the cluster from scaling down. No new nodes are added to run the pods, and nodes running these pods might be deleted to free resources.
Cluster autoscaling is supported for the platforms that have machine API available on it.
You can use OpenShift Cluster Manager to autoscale during cluster creation.
During cluster creation, check the Enable autoscaling box. The Edit cluster autoscaling settings button becomes selectable.
You can also choose the minimum or maximum amount of nodes to autoscale.
Click Edit cluster autoscaling settings.
Edit any settings you want and then click Close.
You can use OpenShift Cluster Manager to autoscale after cluster creation.
In OpenShift Cluster Manager, click the name of the cluster you want to autoscale. The Overview page for the cluster has a Autoscaling item that indicates if it is enabled or disabled.
Click the Machine Pools tab.
Click the Edit cluster autoscaling button. The Edit cluster autoscaling settings window is shown.
Click the Autoscale cluster toggle at the top of the window. All the settings are now editable.
Edit any settings you want and then click Save.
Click the x at the top right of the screen to close the settings window.
To revert all autoscaling settings to the defaults if they have been changed, click the Revert all to defaults button.
The tables explain all the configurable UI settings when using cluster autoscaling with OpenShift Cluster Manager.
Setting | Description | Type or Range | Default |
---|---|---|---|
|
Sets the autoscaler log level. The default value is 1. Level 4 is recommended for debugging. Level 6 enables almost everything. |
|
1 |
|
If |
|
true |
|
Gives pods graceful termination time in seconds before scaling down. |
|
600 |
|
Maximum time the cluster autoscaler waits for nodes to be provisioned. |
|
15m |
|
Allows users to schedule "best-effort" pods, which are not expected to trigger cluster autoscaler actions. These pods only run when spare resources are available. |
|
-10 |
|
Determines whether the cluster autoscaler ignores daemon set pods when calculating resource utilization for scaling down. |
|
false |
|
If |
|
false |
|
This option specifies labels that the cluster autoscaler should ignore when considering node group similarity. This option cannot contain spaces. |
|
Format should be a comma-separated list of labels. |
Setting | Description | Type or Range | Default |
---|---|---|---|
|
Minimum number of cores in cluster. The cluster autoscaler does not scale the cluster less than this number. |
|
0 |
|
Maximum number of cores in cluster. The cluster autoscaler does not scale the cluster greater than this number. |
|
180 * 64 (11520) |
|
Minimum number of gigabytes of memory in cluster. The cluster autoscaler does not scale the cluster less than this number. |
|
0 |
|
Maximum number of gigabytes of memory in cluster. The cluster autoscaler does not scale the cluster greater than this number. |
|
180 * 64 * 20 (230400) |
|
Maximum number of nodes in all node groups. Includes all nodes, not just automatically scaled nodes. The cluster autoscaler does not grow the cluster greater than this number. |
|
180 |
GPUs |
Minimum and maximum number of different GPUs in cluster. The cluster autoscaler does not scale the cluster less than or greater than these numbers. |
|
Format should be a comma-separated list of "<gpu_type>:<min>:<max>". |
Setting | Description | Type or Range | Default |
---|---|---|---|
|
Should the cluster autoscaler scale down the cluster. |
|
true |
|
Node utilization level, defined as the sum of the requested resources divided by capacity, below which a node can be considered for scale down. |
|
0.5 |
|
How long a node should be unneeded before it is eligible for scale down. |
|
10m |
|
How long after scale up that scale-down evaluation resumes. |
|
10m |
|
How long after node deletion that scale-down evaluation resumes. |
|
0s |
|
How long after scale down failure that scale-down evaluation resumes. |
|
3m |
You can use the interactive mode of your terminal, if available, to set cluster-wide autoscaling behavior during cluster creation.
Interactive mode provides more information about available configurable parameters. Interactive mode also does basic checks and preflight validations, meaning that if a provided value is invalid, the terminal outputs a prompt for a valid input.
During cluster creation, use the --enable-autoscaling
and --interactive
parameters to enable cluster autoscaling:
$ rosa create cluster --cluster-name <cluster_name> --enable-autoscaling --interactive
If your cluster name is longer than 15 characters, it will contain an autogenerated domain prefix as a sub-domain for your provisioned cluster on To customize the subdomain, use the |
When the following prompt appears, enter y to go through all available autoscaling options.
? Configure cluster-autoscaler (optional): [? for help] (y/N) y <enter>
You can use the interactive mode of your terminal, if available, to set cluster-wide autoscaling behavior after cluster creation.
After you have created a cluster, type the following command:
$ rosa create autoscaler --cluster=<mycluster> --interactive
You can then set all available autoscaling parameters.
You can use the ROSA CLI (rosa
) to set cluster-wide autoscaling behavior during cluster creation. You can enable the autoscaler on the entire machine or just a cluster.
During cluster creation, type --enable autoscaling
after the cluster name to enable machine autoscaling:
If your cluster name is longer than 15 characters, it will contain an autogenerated domain prefix as a sub-domain for your provisioned cluster on To customize the subdomain, use the |
$ rosa create cluster --cluster-name <cluster_name> --enable-autoscaling
Set at least one parameter to enable cluster autoscaling by running the following command:
$ rosa create cluster --cluster-name <cluster_name> --enable-autoscaling <parameter>
You can use the ROSA CLI (rosa
) to set cluster-wide autoscaling after cluster creation.
After you have created a cluster, create the autoscaler:
$ rosa create autoscaler --cluster=<mycluster>
You can also create the autoscaler with specific parameters using the following command:
$ rosa create autoscaler --cluster=<mycluster> <parameter>
You can edit any specific parameters of the cluster autoscaler after creating the autoscaler.
To edit the cluster autoscaler, run the following command:
$ rosa edit autoscaler --cluster=<mycluster>
To edit a specific parameter, run the following command:
$ rosa edit autoscaler --cluster=<mycluster> <parameter>
You can add the following parameters to the cluster creation command to configure autoscaler parameters when using the ROSA CLI (rosa
).
Setting | Description | Type or Range | Example/Instruction |
---|---|---|---|
|
Identify node groups with the same instance type and label set, and try to balance respective sizes of those node groups. |
|
Add it to set to true, omit the option to set to false. |
|
If set, the cluster autoscaler does not delete nodes with pods that have local storage, for example, EmptyDir or HostPath. |
|
Add it to set to true, omit the option to set to false. |
|
Autoscaler log level. Replace int in the command with the number you want to use. |
|
|
|
Gives pods graceful termination time before scaling down, measured in seconds. Replace int in the command with the number of seconds you want to use. |
|
|
|
The priority that a pod must exceed to cause the cluster autoscaler to deploy additional nodes. Replace int in the command with the number you want to use, can be negative. |
|
|
|
Minimum and maximum number of different GPUs in cluster. Cluster autoscaler does not scale the cluster less than or greater than these numbers. The format must be a comma-separated list of "<gpu_type>,<min>,<max>". |
|
|
|
If set, the cluster-autoscaler ignores daemon set pods when calculating resource utilization for scaling down. |
|
Add it to set to true, omit the option to set to false. |
|
Maximum time that the cluster autoscaler waits for a node to be provisioned. Replace string in the command with an integer and time unit (ns,us,µs,ms,s,m,h). |
|
|
|
A comma-separated list of label keys that the cluster autoscaler should ignore when comparing node groups for similarity. Replace strings in the command with the relevant labels.. |
|
|
|
Maximum amount of nodes in the cluster, including the autoscaled nodes. Replace int in the command with the number you want to use. |
|
|
|
Minimum number of cores to deploy in the cluster. Replace int in the command with the number you want to use. |
|
|
|
Maximum number of cores to deploy in the cluster. Replace int in the command with the number you want to use. |
|
|
|
Minimum amount of memory, in GiB, in the cluster. Replace int in the command with the number you want to use. |
|
|
|
Maximum amount of memory, in GiB, in the cluster. Replace int in the command with the number you want to use. |
|
|
|
If set, the cluster autoscaler should scale down the cluster. |
|
Add it to set to true, omit the option to set to false. |
|
How long a node should be unneeded before it is eligible for scale down. Replace string in the command with an integer and time unit (ns,us,µs,ms,s,m,h). |
|
|
|
Node utilization level, defined as sum of requested resources divided by capacity, below which a node can be considered for scale down. Value must be between 0 and 1. |
|
|
|
How long after scale up that scale down evaluation resumes. Replace string in the command with an integer and time unit (ns,us,µs,ms,s,m,h). |
|
|
|
How long after node deletion that scale down evaluation resumes. Replace string in the command with an integer and time unit (ns,us,µs,ms,s,m,h). |
|
|
|
How long after scale down failure that scale down evaluation resumes. Replace string in the command with an integer and time unit (ns,us,µs,ms,s,m,h). |
|
|