copyright | lastupdated | keywords | subcollection | ||
---|---|---|---|---|---|
|
2021-04-15 |
kubernetes, iks, node scaling, ca, autoscaler |
containers |
{:DomainName: data-hd-keyref="APPDomain"} {:DomainName: data-hd-keyref="DomainName"} {:android: data-hd-operatingsystem="android"} {:api: .ph data-hd-interface='api'} {:apikey: data-credential-placeholder='apikey'} {:app_key: data-hd-keyref="app_key"} {:app_name: data-hd-keyref="app_name"} {:app_secret: data-hd-keyref="app_secret"} {:app_url: data-hd-keyref="app_url"} {:authenticated-content: .authenticated-content} {:beta: .beta} {:c#: data-hd-programlang="c#"} {:cli: .ph data-hd-interface='cli'} {:codeblock: .codeblock} {:curl: .ph data-hd-programlang='curl'} {:deprecated: .deprecated} {:dotnet-standard: .ph data-hd-programlang='dotnet-standard'} {:download: .download} {:external: target="_blank" .external} {:faq: data-hd-content-type='faq'} {:fuzzybunny: .ph data-hd-programlang='fuzzybunny'} {:generic: data-hd-operatingsystem="generic"} {:generic: data-hd-programlang="generic"} {:gif: data-image-type='gif'} {:go: .ph data-hd-programlang='go'} {:help: data-hd-content-type='help'} {:hide-dashboard: .hide-dashboard} {:hide-in-docs: .hide-in-docs} {:important: .important} {:ios: data-hd-operatingsystem="ios"} {:java: .ph data-hd-programlang='java'} {:java: data-hd-programlang="java"} {:javascript: .ph data-hd-programlang='javascript'} {:javascript: data-hd-programlang="javascript"} {:new_window: target="_blank"} {:note .note} {:note: .note} {:objectc data-hd-programlang="objectc"} {:org_name: data-hd-keyref="org_name"} {:php: data-hd-programlang="php"} {:pre: .pre} {:preview: .preview} {:python: .ph data-hd-programlang='python'} {:python: data-hd-programlang="python"} {:route: data-hd-keyref="route"} {:row-headers: .row-headers} {:ruby: .ph data-hd-programlang='ruby'} {:ruby: data-hd-programlang="ruby"} {:runtime: architecture="runtime"} {:runtimeIcon: .runtimeIcon} {:runtimeIconList: .runtimeIconList} {:runtimeLink: .runtimeLink} {:runtimeTitle: .runtimeTitle} {:screen: .screen} {:script: data-hd-video='script'} {:service: architecture="service"} {:service_instance_name: data-hd-keyref="service_instance_name"} {:service_name: data-hd-keyref="service_name"} {:shortdesc: .shortdesc} {:space_name: data-hd-keyref="space_name"} {:step: data-tutorial-type='step'} {:subsection: outputclass="subsection"} {:support: data-reuse='support'} {:swift: .ph data-hd-programlang='swift'} {:swift: data-hd-programlang="swift"} {:table: .aria-labeledby="caption"} {:term: .term} {:tip: .tip} {:tooling-url: data-tooling-url-placeholder='tooling-url'} {:troubleshoot: data-hd-content-type='troubleshoot'} {:tsCauses: .tsCauses} {:tsResolve: .tsResolve} {:tsSymptoms: .tsSymptoms} {:tutorial: data-hd-content-type='tutorial'} {:ui: .ph data-hd-interface='ui'} {:unity: .ph data-hd-programlang='unity'} {:url: data-credential-placeholder='url'} {:user_ID: data-hd-keyref="user_ID"} {:vbnet: .ph data-hd-programlang='vb.net'} {:video: .video}
{: #ca}
With the cluster-autoscaler
add-on, you can scale the worker pools in your {{site.data.keyword.containerlong}} classic or VPC cluster automatically to increase or decrease the number of worker nodes in the worker pool based on the sizing needs of your scheduled workloads. The cluster-autoscaler
add-on is based on the Kubernetes Cluster-Autoscaler project.
{: shortdesc}
Want to autoscale your pods instead? Check out Scaling apps. {: tip}
{: #ca_about}
The cluster autoscaler periodically scans the cluster to adjust the number of worker nodes within the worker pools that it manages in response to your workload resource requests and any custom settings that you configure, such as scanning intervals. Every minute, the cluster autoscaler checks for the following situations. {: shortdesc}
- Pending pods to scale up: A pod is considered pending when insufficient compute resources exist to schedule the pod on a worker node. When the cluster autoscaler detects pending pods, the autoscaler scales up your worker nodes evenly across zones to meet the workload resource requests.
- Underutilized worker nodes to scale down: By default, worker nodes that run with less than 50% of the total compute resources that are requested for 10 minutes or more and that can reschedule their workloads onto other worker nodes are considered underutilized. If the cluster autoscaler detects underutilized worker nodes, it scales down your worker nodes one at a time so that you have only the compute resources that you need. If you want, you can customize the default scale-down utilization threshold of 50% for 10 minutes.
Scanning and scaling up and down happens at regular intervals over time, and depending on the number of worker nodes might take a longer period of time to complete, such as 30 minutes.
The cluster autoscaler adjusts the number of worker nodes by considering the resource requests{: external} that you define for your deployments, not actual worker node usage. If your pods and deployments don't request appropriate amounts of resources, you must adjust their configuration files. The cluster autoscaler can't adjust them for you. Also, keep in mind that worker nodes use some of their compute resources for basic cluster functionality, default and custom add-ons, and resource reserves. {: note}
What does scaling up and down look like?
In general, the cluster autoscaler calculates the number of worker nodes that your cluster needs to run its workload. Scaling the cluster up or down depends on many factors, including the following.
- The minimum and maximum worker node size per zone that you set.
- Your pending pod resource requests and certain metadata that you associate with the workload, such as anti-affinity, labels to place pods only on certain flavors, or pod disruption budgets{: external}.
- The worker pools that the cluster autoscaler manages, potentially across zones in a multizone cluster.
- The custom Helm chart values that are set, such as skipping worker nodes for deletion if they use local storage.
For more information, see the Kubernetes Cluster Autoscaler FAQs for How does scale-up work?{: external} and How does scale-down work?{: external}.
Can I change how scale-up and scale-down work?
You can customize settings or use other Kubernetes resources to affect how scaling up and down work.
- Scale-up: Customize the cluster autoscaler configmap values such as
scanInterval
,expander
,skipNodes
, ormaxNodeProvisionTime
. Review ways to overprovision worker nodes so that you can scale up worker nodes before a worker pool runs out of resources. You can also set up Kubernetes pod budget disruptions and pod priority cutoffs to affect how scaling up works. - Scale-down: Customize the cluster autoscaler configmap values such as
scaleDownUnneededTime
,scaleDownDelayAfterAdd
,scaleDownDelayAfterDelete
, orscaleDownUtilizationThreshold
.
Can I increase the minimum size per zone to trigger a scale up my cluster to that size?
No, setting a minSize
does not automatically trigger a scale-up. The minSize
is a threshold so that the cluster autoscaler does not scale below a certain number of worker nodes per zone. If your cluster does not yet have that number per zone, the cluster autoscaler does not scale up until you have workload resource requests that require more resources. For example, if you have a worker pool with one worker node per three zones (three total worker nodes) and set the minSize
to 4
per zone, the cluster autoscaler does not immediately provision an additional three worker nodes per zone (12 worker nodes total). Instead, the scale-up is triggered by resource requests. If you create a workload that requests the resources of 15 worker nodes, the cluster autoscaler scales up the worker pool to meet this request. Now, the minSize
means that the cluster autoscaler does not scale down below four worker nodes per zone even if you remove the workload that requests the amount.
How is this behavior different from worker pools that are not managed by the cluster autoscaler?
When you create a worker pool, you specify how many worker nodes per zone it has. The worker pool maintains that number of worker nodes until you resize or rebalance it. The worker pool does not add or remove worker nodes for you. If you have more pods than can be scheduled, the pods remain in pending state until you resize the worker pool.
When you enable the cluster autoscaler for a worker pool, worker nodes are scaled up or down in response to your pod spec settings and resource requests. You don't need to resize or rebalance the worker pool manually.
{: #scalable-practices}
Make the most out of the cluster autoscaler by using the following strategies for your worker node and workload deployment strategies. For more information, see the Kubernetes Cluster Autoscaler FAQs{: external}. {: shortdesc}
Try out the cluster autoscaler with a few test workloads to get a good feel for how scale-up and scale-down work, what custom values you might want to configure, and any other aspects that you might want, like overprovisioning worker nodes or limiting apps. Then, clean up your test environment and plan to include these custom values and additional settings with a fresh installation of the cluster autoscaler.
{: #scalable-practices-multiple} Yes, after you install the cluster autoscaler, you can choose which worker pools within the cluster to autoscale in the configmap. You can run only one autoscaler per cluster. Create and enable autoscaling on worker pools other than the default worker pool, because the default worker pool has system components that can prevent automatically scaling down. {: shortdesc}
{: #scalable-practices-resrequests}
The cluster autoscaler scales your cluster in response to your workload resource requests{: external}. As such, specify resource requests{: external} for all your deployments because the resource requests are what the cluster autoscaler uses to calculate how many worker nodes are needed to run the workload. Keep in mind that autoscaling is based on the compute usage that your workload configurations request, and does not consider other factors such as machine costs. {: shortdesc}
{: #scalable-practices-zero}
No, you cannot set the cluster autoscaler minSize
to 0
. Additionally, unless you disable all public application load balancers (ALBs) in each zone of your cluster, you must change the minSize
to 2
worker nodes per zone so that the ALB pods can be spread for high availability. Additionally, you can taint your worker pool to achieve a scale to down a minimum of 1
.
{: shortdesc}
If your worker pool has zero (0) worker nodes, the worker pool cannot be scaled. Disable cluster autoscaling for the worker pool, manually resize the worker pool to at least one, and re-enable cluster autoscaling.
{: #scalable-practices-apps}
Yes, you can add several Kubernetes features to your deployment to adjust how the cluster autoscaler considers your resource requests for scaling. {: shortdesc}
- Taint your worker pool to allow only the deployments or pods with the matching toleration to be deployed to your worker pool.
- Add a label to your worker pool other than the default worker pool. This label is used in your deployment configuration to specify
nodeAffinity
ornodeSelector
which limits the workloads that can be deployed on the worker nodes in the labeled worker pool. - Use pod disruption budgets{: external} to prevent abrupt rescheduling or deletions of your pods.
- If you're using pod priority, you can edit the priority cutoff{: external} to change what types of priority trigger scaling up. By default, the priority cutoff is zero (
0
).
{: #scalable-practices-taints}
Yes, but make sure to apply taints at the worker pool level so that all existing and future worker nodes get the same taint. Then, you must include a matching toleration in your workload configuration{: external} so that these workloads are scheduled onto your autoscaled worker pool with the matching taint. Keep in mind that if you deploy a workload that is not tolerated by the tainted worker pool, the worker nodes are not considered for scale-up and more worker nodes might be ordered even if the cluster has sufficient capacity. However, the tainted worker pool is still identified as underutilized if they have less than the threshold (by default 50%) of their resources utilized and thus are considered for scale-down. {: shortdesc}
{: #scalable-practices-unbalanced}
During a scale-up, the cluster autoscaler balances nodes across zones, with a permitted difference of plus or minus one (+/- 1) worker node. Your pending workloads might not request enough capacity to make each zone balanced. In this case, if you want to manually balance the worker pools, update your cluster autoscaler configmap to remove the unbalanced worker pool. Then run the ibmcloud ks worker-pool rebalance
command, and add the worker pool back to the cluster autoscaler configmap.
{: shortdesc}
{: #scalable-practices-resize}
When the cluster autoscaler is enabled for a worker pool, you cannot resize or rebalance your worker pools. You must edit the configmap to change the worker pool minimum or maximum sizes, or disable cluster autoscaling for that worker pool. Don't use the ibmcloud ks worker rm
command to remove individual worker nodes from your worker pool, which can unbalance the worker pool.
{: shortdesc}
Further, if you do not disable the worker pools before you disable the cluster-autoscaler
add-on, the worker pools cannot be resized manually. Reinstall the cluster autoscaler, edit the configmap to disable the worker pool, and try again.
{: #ca_prepare_cluster}
Before you install the {{site.data.keyword.cloud_notm}} cluster autoscaler add-on, you can set up your cluster to prepare the cluster for autoscaling. {: shortdesc}
The cluster autoscaler add-on is not supported for baremetal worker nodes. {: important}
- Install the required CLI and plug-ins:
- {{site.data.keyword.cloud_notm}} CLI (
ibmcloud
) - {{site.data.keyword.containerlong_notm}} plug-in (
ibmcloud ks
) - {{site.data.keyword.registrylong_notm}} plug-in (
ibmcloud cr
) - Kubernetes (
kubectl
)
- {{site.data.keyword.cloud_notm}} CLI (
- Create a standard cluster.
- Log in to your account. If applicable, target the appropriate resource group. Set the context for your cluster.
- Confirm that your {{site.data.keyword.cloud_notm}} Identity and Access Management credentials are stored in the cluster. The cluster autoscaler uses this secret to authenticate credentials. If the secret is missing, create it by resetting credentials.
{: pre}
kubectl get secrets -n kube-system | grep storage-secret-store
- Plan to autoscale a worker pool other than the
default
worker pool, because thedefault
worker pool has system components that can prevent automatically scaling down. Include a label for the worker pool so that you can set node affinity{: external} for the workloads that you want to deploy to the worker pool that has autoscaling enabled. For example, your label might beapp: nginx
. Choose from the following options:- Create a VPC or classic worker pool other than the
default
worker pool with the label that you want to use with the workloads to run on the autoscaled worker pool. - Add the label to an existing worker pool other than the
default
worker pool.
- Create a VPC or classic worker pool other than the
- Confirm that your worker pool has the necessary labels for autoscaling. In the output, you see the required
ibm-cloud.kubernetes.io/worker-pool-id
label and the label that you previously created for node affinity. If you do not see these labels, add a new worker pool, and then add your label for node affinity.
ibmcloud ks worker-pool get --cluster <cluster_name_or_ID> --worker-pool <worker_pool_name_or_ID> | grep Labels
{: pre}
Example output of a worker pool with the label:
Labels: ibm-cloud.kubernetes.io/worker-pool-id=a1aa111111b22b22cc3c3cc444444d44-4d555e5
{: screen}
-
Taint the worker pools that you want to autoscale so that the worker pool does not accept workloads except the ones that you want to run on the autoscaled worker pool. You can learn more about taints and tolerations in the community Kubernetes documentation. As an example, you might set a taint of
use=autoscale:NoExecute
. In this example, theNoExecute
taint evicts pods that do not have the toleration corresponding to this taint. -
Install the cluster autoscaler add-on.
You might also install the cluster autoscaler Helm chart, but the Helm chart is deprecated and becomes unsupported tentatively 15 September 2020. You cannot install the add-on and the Helm chart in the same cluster at the same time. {: deprecated}
{: #ca_addon}
-
If you previously installed the cluster autoscaler Helm chart, make a backup of your configmap, disable autoscaling, and remove the Helm chart.
The cluster autoscaler add-on configmap contains different parameters than the cluster autoscaler Helm chart configmap. You can make a backup of your Helm chart configmap to use as reference, but do not apply the backup directly to your cluster with the add-on. Instead, you can update the cluster autoscaler add-on configmap with the values from your Helm chart backup.
{: note}
- Install the cluster autoscaler add-on to your cluster.
**In the console**
1. From the [{{site.data.keyword.containerlong_notm}} cluster dashboard](https://cloud.ibm.com/kubernetes/clusters), select the cluster where you want to enable autoscaling.
2. On the **Overview** page, click **Add-ons**.
3. On the **Add-ons** page, locate the Cluster Autoscaler add-on and click **Install**
**In the CLI**
1. Install the `cluster-autoscaler` add-on.
```
ibmcloud ks cluster addon enable cluster-autoscaler —-cluster <cluster_name>
```
{: pre}
**Example output**
```
Enabling add-on `cluster-autoscaler` for cluster <cluster_name>...
The add-on might take several minutes to deploy and become ready for use.
OK
```
{: screen}
2. Verify that the add-on is installed and `Ready`.
```
ibmcloud ks cluster addon ls --cluster <cluster_name>
```
{: pre}
**Example output**
```
Name Version Health State Health Status
cluster-autoscaler 1.0.1 normal Addon Ready
```
{: screen}
- By default, no worker pools are enabled for autoscaling. To enable autoscaling on your worker pools, update the cluster autoscaler configmap to enable scaling for your worker pools.
{: #ca_helm}
The cluster autoscaler Helm chart is deprecated. For the latest version of the cluster autoscaler, install the add-on {: deprecated}
The cluster autoscaler Helm chart is available for standard classic and VPC clusters that are set up with public network connectivity. {: important}
Install the {{site.data.keyword.cloud_notm}} cluster autoscaler plug-in with a Helm chart to autoscale worker pools in your cluster. {: shortdesc}
-
Follow the instructions to install the Helm version 3 client on your local machine.
-
Add and update the Helm repo where the cluster autoscaler Helm chart is.
helm repo add iks-charts https://icr.io/helm/iks-charts
{: pre}
helm repo update
{: pre}
-
Decide if you want to customize the cluster autoscaler settings, such as the worker pools that are autoscaled, or the amount of time that the cluster autoscaler waits before scaling worker nodes up or down. You can customize your settings by using the
--set
flag in thehelm install
command. Depending on the settings that you want to customize, you might need to prepare multiple--set
flags before you can install the Helm chart. For example, you might want to autoscale your default worker pool by preparing the following--set
flag. Note: If your default command line shell iszsh
, start abash
session before running the following command.--set workerpools[0].<pool_name>.max=<number_of_workers>,workerpools[0].<pool_name>.min=<number_of_workers>,workerpools[0].<pool_name>.enabled=(true|false)
{: codeblock}
Understanding the
--set workerpools
options:workerpools[0]
: The first worker pool to enable or disable for autoscaling. You must include three parameters for each worker pool for the command to succeed: the maximum number of worker nodes (max
), the minimum number of worker nodes (min
), and whether you want to enable (true
) or disable (false
) autoscaling for this worker pool. To include multiple worker pools, include a comma-separated list and increase the number in brackets, such as:workerpools[0].default...,workerpools[1].pool1...,workerpools[2].pool2...
.<pool_name>
: The name or ID of the worker pool that you want to enable or disable for autoscaling. To list available worker pools, runibmcloud ks worker-pool ls --cluster <cluster_name_or_ID>
.max=<number_of_workers>
: Specify the maximum number of worker nodes per zone that the cluster autoscaler can scale up to. The value must be equal to or greater than the value that you set for themin=<number_of_workers>
size.min=<number_of_workers>
: Specify the minimum number of worker nodes per zone that the cluster autoscaler can scale down to. The value must be2
or greater so that your ALB pods can be spread for high availability. If you disabled all public ALBs in each zone of your standard cluster, you can set the value to1
.Keep in mind that setting a
min
size does not automatically trigger a scale-up. Themin
size is a threshold so that the cluster autoscaler does not scale below this minimum number of worker nodes per zone. If your cluster does not have this number of worker nodes per zone yet, the cluster autoscaler does not scale up until you have workload resource requests that require more resources.enabled=(true|false)
: Set the value totrue
to enable the cluster autoscaler to scale your worker pool. Set the value tofalse
to stop the cluster autoscaler from scaling the worker pool. Later, if you want to remove the cluster autoscaler, you must first disable each worker pool in the configmap.
-
Install the cluster autoscaler Helm chart in the
kube-system
namespace of your cluster. In the example command, theautoscale
worker pool is enabled for autoscaling with the Helm chart installation. The worker pool details are added to the cluster autoscaler config map.
helm install ibm-iks-cluster-autoscaler iks-charts/ibm-iks-cluster-autoscaler --namespace kube-system --set workerpools[0].default.max=5,workerpools[0].autoscale.min=2,workerpools[0].default.enabled=true
{: pre}
```
NAME: ibm-iks-cluster-autoscaler
LAST DEPLOYED: Fri Jan 17 12:20:30 2020
NAMESPACE: kube-system
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
Thank you for installing: ibm-iks-cluster-autoscaler. Your release is named: ibm-iks-cluster-autoscaler
For more information about using the cluster autoscaler, refer to the chart README.md file.
```
{: screen}
-
Verify that the installation is successful.
-
Check that the cluster autoscaler pod is in a Running state.
kubectl get pods --namespace=kube-system | grep ibm-iks-cluster-autoscaler
{: pre} Example output:
ibm-iks-cluster-autoscaler-8497bfc968-dbn7w 1/1 Running 0 9m
{: screen}
-
Check that the cluster autoscaler service is created.
kubectl get service --namespace=kube-system | grep ibm-iks-cluster-autoscaler
{: pre} Example output:
ibm-iks-cluster-autoscaler ClusterIP 172.21.xxx.xx <none> 8085/TCP 9m
{: screen}
-
Optional: If you enabled autoscaling for a worker pool during the Helm chart installation, verify that the config map is correct by checking that the
workerPoolsConfig.json
field is updated and that theworkerPoolsConfigStatus
field shows aSUCCESS
message.kubectl get cm iks-ca-configmap -n kube-system -o yaml
{: pre}
Example output where the default worker pool is enabled for autoscaling:
apiVersion: v1 data: workerPoolsConfig.json: | [{"name": "autoscale", "minSize": 1, "maxSize": 2, "enabled": true }] kind: ConfigMap metadata: annotations: workerPoolsConfigStatus: '{"1:2:default":"SUCCESS"}' creationTimestamp: "2019-08-23T14:26:54Z" name: iks-ca-configmap namespace: kube-system resourceVersion: "12757878" selfLink: /api/v1/namespaces/kube-system/configmaps/iks-ca-configmap uid: bd661f95-35ef-433d-97e0-5d1ac092eafb
{: screen}
-
-
Repeat these steps for every cluster where you want to provision the cluster autoscaler.
-
Optional: If you did not set any worker pools for autoscaling with the installation, you can Update the cluster autoscaler configuration.
{: #ca_cm}
Update the cluster autoscaler configmap to enable automatically scaling worker nodes in your worker pools based on the minimum and maximum values that you set. {: shortdesc}
After you edit the configmap to enable a worker pool, the cluster autoscaler scales your cluster in response to your workload requests. As such, you cannot resize or rebalance your worker pools. Scanning and scaling up and down happens at regular intervals over time, and depending on the number of worker nodes might take a longer period of time to complete, such as 30 minutes. Later, if you want to remove the cluster autoscaler, you must first disable each worker pool in the configmap. {: note}
Before you begin:
- Install the cluster autoscaler add-on or the Helm chart.
- Log in to your account. If applicable, target the appropriate resource group. Set the context for your cluster.
To update the cluster autoscaler configmap and values:
-
Edit the cluster autoscaler configmap YAML file.
kubectl edit cm iks-ca-configmap -n kube-system -o yaml
{: pre}
Example output
apiVersion: v1 data: workerPoolsConfig.json: | [ {"name": "<worker_pool>","minSize": 1,"maxSize": 2,"enabled":false} ] kind: ConfigMap
{: screen}
-
Edit the configmap with the parameters to define how the cluster autoscaler scales your cluster worker pool. Note: Unless you disabled all public application load balancers (ALBs) in each zone of your standard cluster, you must change the
minSize
to2
per zone so that the ALB pods can be spread for high availability.Cluster autoscaler configmap parameters Parameter with default value Description `"name": "default"` Replace `"default"` with the name or ID of the worker pool that you want to scale. To list worker pools, run `ibmcloud ks worker-pool ls --cluster `.
To manage more than one worker pool, copy the JSON line to a comma-separated line, such as follows.[ {"name": "default","minSize": 1,"maxSize": 2,"enabled":false}, {"name": "Pool2","minSize": 2,"maxSize": 5,"enabled":true} ]
The cluster autoscaler can scale only worker pools that have the `ibm-cloud.kubernetes.io/worker-pool-id` label. To check whether your worker pool has the required label, run `ibmcloud ks worker-pool get --cluster --worker-pool | grep Labels`. If your worker pool does not have the required label, [add a new worker pool](/docs/containers?topic=containers-add_workers#add_pool) and use this worker pool with the cluster autoscaler.
`"minSize": 1` Specify the minimum number of worker nodes per zone that the cluster autoscaler can scale down the worker pool to. The value must be `2` or greater so that your ALB pods can be spread for high availability. If you [disabled](/docs/containers?topic=containers-cli-plugin-kubernetes-service-cli#cs_alb_configure) all public ALBs in each zone of your standard cluster, you can set the value to `1`. Setting a `minSize` does not automatically trigger a scale-up. The `minSize` is a threshold so that the cluster autoscaler does not scale below a certain number of worker nodes per zone. If your cluster does not yet have that number per zone, the cluster autoscaler does not scale up until you have workload resource requests that require more resources. For example, if you have a worker pool with one worker node per three zones (three total worker nodes) and set the `minSize` to `4` per zone, the cluster autoscaler does not immediately provision an additional three worker nodes per zone (12 worker nodes total). Instead, the scale-up is triggered by resource requests. If you create a workload that requests the resources of 15 worker nodes, the cluster autoscaler scales up the worker pool to meet this request. Now, the `minSize` means that the cluster autoscaler does not scale down below four worker nodes per zone even if you remove the workload that requests the amount. For more information, see the [Kubernetes docs](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#when-does-cluster-autoscaler-change-the-size-of-a-cluster).
`"maxSize": 2` Specify the maximum number of worker nodes per zone that the cluster autoscaler can scale up the worker pool to. The value must be equal to or greater than the value that you set for the `minSize`. `"enabled": false` Set the value to `true` for the cluster autoscaler to manage scaling for the worker pool. Set the value to `false` to stop the cluster autoscaler from scaling the worker pool.
Later, if you want to [remove the cluster autoscaler](#ca_rm), you must first disable each worker pool in the configmap. -
Save the configuration file.
-
Get your cluster autoscaler pod.
kubectl get pods -n kube-system
{: pre}
-
Review the
Events
section of the cluster autoscaler pod for aConfigUpdated
event to verify that the configmap is successfully updated. The event message for your configmap is in the following format:minSize:maxSize:PoolName:<SUCCESS|FAILED>:error message
.kubectl describe pod -n kube-system <cluster_autoscaler_pod>
{: pre}
Example output:
Name: ibm-iks-cluster-autoscaler-857c4d9d54-gwvc6 Namespace: kube-system ... Events: Type Reason Age From Message ---- ------ ---- ---- ------- Normal ConfigUpdated 3m ibm-iks-cluster-autoscaler-857c4d9d54-gwvc6 {"1:3:default":"SUCCESS:"}
{: screen}
If you enable a worker pool for autoscaling and then later add a zone to this worker pool, restart the cluster autoscaler pod so that it picks up this change: `kubectl delete pod -n kube-system `.
{: #ca_customize} Customize the cluster autoscaler settings such as the amount of time it waits before scaling worker nodes up or down. {: shortdesc}
Before you begin:
- Log in to your account. If applicable, target the appropriate resource group. Set the context for your cluster.
- Install the
ibm-iks-cluster-autoscaler
add-on. You can also install the autoscaler via a Helm chart, but the Helm chart is deprecated.
{: #ca_addon_values}
When you modify a configmap parameter other than the worker pool minSize
, maxSize
, or if you enable or disable a worker pool, the cluster autoscaler pods are restarted.
{: note}
-
Review the default parameters for the cluster autoscaler configmap.
-
Download the cluster autoscaler add-on configmap and review the parameters.
kubectl get cm iks-ca-configmap -n kube-system -o yaml > configmap.yaml
{: pre}
-
Open the
configmap.yaml
file and update the settings that you want to change. -
Reapply the cluster autoscaler add-on configmap.
kubectl apply -f configmap.yaml
{: pre}
- Verify that the pods are restarted successfully.
kubectl get pods -n kube-system | grep autoscaler
{: pre}
{: #ca_chart_values}
The cluster autoscaler Helm chart is deprecated. For the latest version of the cluster autoscaler, install the add-on {: deprecated}
-
To change any of the cluster autoscaler configuration values, update the config map or the Helm chart with the new values. Include the
--recreate-pods
flag so that any existing cluster autoscaler pods are re-created to pick up the custom setting changes. The following example command changes the scan interval to2m
and enables autoscaling for theautoscale
worker pool, with a maximum of5
and minimum of3
worker nodes per zone.helm upgrade --set scanInterval=2m --set workerpools[0].default.max=5,workerpools[0].autoscale.min=3,workerpools[0].default.enabled=true ibm-iks-cluster-autoscaler iks-charts/ibm-iks-cluster-autoscaler -i --recreate-pods --namespace kube-system
{: pre}
To reset the Helm chart to the default values:
helm upgrade --reset-values ibm-iks-cluster-autoscaler iks-charts/ibm-iks-cluster-autoscaler --recreate-pods
{: pre}
-
Verify your changes.
- Review the Helm chart values again.
helm get values ibm-iks-cluster-autoscaler -a
{: pre}
-
Verify that the installation is successful.
- Check that the cluster autoscaler pod is in a Running state.
{: pre} Example output:
kubectl get pods --namespace=kube-system | grep ibm-iks-cluster-autoscaler
{: screen}ibm-iks-cluster-autoscaler-8497bfc968-dbn7w 1/1 Running 0 9m
- Check that the cluster autoscaler service is created.
{: pre} Example output:
kubectl get service --namespace=kube-system | grep ibm-iks-cluster-autoscaler
{: screen}ibm-iks-cluster-autoscaler ClusterIP 172.21.xxx.xx <none> 8085/TCP 9m
- Check that the cluster autoscaler pod is in a Running state.
-
Verify that the config map is correct by checking that the
workerPoolsConfig.json
field is updated and that theworkerPoolsConfigStatus
field shows aSUCCESS
message.
kubectl get cm iks-ca-configmap -n kube-system -o yaml
{: pre}
Example output where the autoscale
worker pool is enabled for autoscaling:
apiVersion: v1
data:
workerPoolsConfig.json: |
[{"name": "autoscale", "minSize": 3, "maxSize": 5, "enabled": true }]
kind: ConfigMap
metadata:
annotations:
workerPoolsConfigStatus: '{"1:2:default":"SUCCESS"}'
creationTimestamp: "2019-08-23T14:26:54Z"
name: iks-ca-configmap
namespace: kube-system
resourceVersion: "12757878"
selfLink: /api/v1/namespaces/kube-system/configmaps/iks-ca-configmap
uid: bd661f95-35ef-433d-97e0-5d1ac092eafb
{: screen}
{: #ca_limit_pool}
To limit a pod deployment to a specific worker pool that is managed by the cluster autoscaler, use a combination of labels and nodeSelector
or nodeAffinity
to deploy apps only to the autoscaled worker pools. With nodeAffinity
, you have more control over how the scheduling behavior works to match pods to worker nodes. Then, use taints and tolerations so that only these apps can run on your autoscaled worker pools.
{: shortdesc}
For more information, see the following Kubernetes docs:
- Assigning pods to nodes{: external}
- Taints and tolerations{: external}
Before you begin:
- Install the
ibm-iks-cluster-autoscaler
plug-in. - Log in to your account. If applicable, target the appropriate resource group. Set the context for your cluster.
To limit pods to run on certain autoscaled worker pools:
-
Make sure that you labeled and tainted your autoscaled worker pool as described in Preparing your cluster for autoscaling.
-
In your pod spec template, match the
nodeSelector
ornodeAffinity
to the label that you used in your worker pool.Example of
nodeSelector
:... spec: containers: - name: nginx image: nginx imagePullPolicy: IfNotPresent nodeSelector: app: nginx ...
{: codeblock}
Example of
nodeAffinity
:spec: containers: - name: nginx image: nginx imagePullPolicy: IfNotPresent affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: use operator: In values: - autoscale
{: codeblock}
-
In your pod spec template, match the
toleration
to the taint you set on your worker pool.Example
NoExecute
toleration:tolerations: - key: use operator: "Exists" effect: "NoExecute"
{: codeblock}
-
Deploy the pod. Because of the matching label, the pod is scheduled onto a worker node that is in the labeled worker pool. Because of the matching toleration, the pod can run on the tainted worker pool.
kubectl apply -f pod.yaml
{: pre}
{: #ca_scaleup}
As described in the Understanding how the cluster autoscaler works topic and the Kubernetes Cluster Autoscaler FAQs{: external}, the cluster autoscaler scales up your worker pools in response to your requested resources of the workload against the available recourses of the worker pool. However, you might want the cluster autoscaler to scale up worker nodes before the worker pool runs out of resources. In this case, your workload does not need to wait as long for worker nodes to be provisioned because the worker pool is already scaled up to meet the resource requests. {: shortdesc}
The cluster autoscaler does not support early scaling (overprovisioning) of worker pools. However, you can configure other Kubernetes resources to work with the cluster autoscaler to achieve early scaling.
- Pause pods
- You can create a deployment that deploys [pause containers ![External link icon](../icons/launch-glyph.svg "External link icon")](https://stackoverflow.com/questions/48651269/what-are-the-pause-containers) in pods with specific resource requests, and assign the deployment a low pod priority. When these resources are needed by higher priority workloads, the pause pod is preempted and becomes a pending pod. This event triggers the cluster autoscaler to scale up.
For more information about setting up a pause pod deployment, see the [Kubernetes FAQ ![External link icon](../icons/launch-glyph.svg "External link icon")](https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#how-can-i-configure-overprovisioning-with-cluster-autoscaler). You can use [this example overprovisioning configuration file ![External link icon](../icons/launch-glyph.svg "External link icon")](https://github.com/IBM-Cloud/kube-samples/blob/master/ibm-ks-cluster-autoscaler/overprovisioning-autoscaler.yaml) to create the priority class, service account, and deployments.If you use this method, make sure that you understand how [pod priority](/docs/containers?topic=containers-pod_priority) works and how to set pod priority for your deployments. For example, if the pause pod does not have enough resources for a higher priority pod, the pod is not preempted. The higher priority workload remains in pending, so the cluster autoscaler is triggered to scale up. However, in this case, the scale-up action is not early because the workload that you want to run cannot be scheduled because of insufficient resources. Pause pod must have the matching `nodeAffinity` or `nodeSelector` as well as the matching tolerations that you set for your worker pool.
- Horizontal pod autoscaling (HPA)
- Because horizontal pod autoscaling is based on the average CPU usage of the pods, the CPU usage limit that you set is reached before the worker pool runs out of resources. More pods are requested, which then triggers the cluster autoscaler to scale up the worker pool.
For more information about setting up HPA, see the [Kubernetes docs ![External link icon](../icons/launch-glyph.svg "External link icon")](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale-walkthrough/).
{: #ca_addon_up}
This topic applies only to the cluster autoscaler add-on. {: important}
If you upgrade your cluster to a version that is not supported by the cluster autoscaler add-on, your apps might experience downtime and your cluster might not scale. {: important}
The cluster autoscaler has two types of updates.
- Patch updates: Patch updates are delivered automatically by IBM and do not contain any feature updates or changes in the supported add-on and cluster versions.
- Release updates: Release updates contain new features for the cluster autoscaler or changes in the supported add-on or cluster versions. You must manually apply release updates to your cluster autoscaler add-on.
- Check the version of the cluster autoscaler add-on that is deployed in your cluster. If an update is available, review the release notes for the latest add-on version.
ibmcloud ks cluster addon ls --cluster <cluster_name>
{: pre}
- Disable the cluster autoscaler add-on. You might see a warning that resources or data might be deleted. For the cluster autoscaler update, any autoscaling operations that are in process when you disable fail. When you re-enable the add-on, the autoscaling operation is restarted for you. Existing cluster autoscaler resources like the
iks-ca-configmap
are retained even after you disable the add-on. Your worker nodes are not deleted because of disabling the add-on.
ibmcloud ks cluster addon disable cluster-autoscaler --cluster <cluster_name>
{: pre}
Example output
Data and resources that you created for the add-on might be deleted when the add-on is disabled. Continue? [y/N]>
{: screen}
- Enable the add-on to install the latest version.
ibmcloud ks cluster addon enable cluster-autoscaler --cluster <cluster_name>
{: pre}
- Verify the add-on is successfully updated and
Ready
.
ibmcloud ks cluster addon ls --cluster <cluster_name>
{: pre}
{: #ca_helm_up}
This topic applies only to the cluster autoscaler Helm chart. {: important}
The cluster autoscaler Helm chart is deprecated. For the latest version of the cluster autoscaler, install the add-on. You can not have both the cluster autoscaler Helm chart and the cluster autoscaler add-on installed at the same time. {: deprecated}
You can upgrade your existing cluster autoscaler release to the latest version of the Helm chart. To check your current release version, run helm list -n <namespace> | grep cluster-autoscaler
. Compare your version to the latest available release by reviewing the Chart Version in the {{site.data.keyword.cloud_notm}} Helm Catalog{: external}.
{: shortdesc}
{: #ca_helm_up_prereqs}
Before you begin to upgrade your cluster autoscaler release, complete the following steps. {: shortdesc}
This topic applies only to the cluster autoscaler Helm chart. {: important}
- Log in to your account. If applicable, target the appropriate resource group. Set the context for your cluster.
- To review the changelog of chart versions, download the source code
tar
file and open theRELEASENOTES.MD
file.
{: #ca_helm_up_general}
This topic applies only to the cluster autoscaler Helm chart. {: important}
To upgrade your cluster autoscaler release, you can update the Helm chart repo and re-create the cluster autoscaler pods. Use the same version of Helm that you used to install the initial Helm chart and release.
Before you begin, see the Prerequisites.
-
Update the Helm repo to retrieve the latest version of all Helm charts in this repo.
helm repo update
{: pre}
-
Optional: Download the latest Helm chart to your local machine. Then, extract the package and review the
release.md
file to find the latest release information.helm pull iks-charts/ibm-iks-cluster-autoscaler
{: pre}
-
Find the name of the cluster autoscaler release that you installed in your cluster.
helm list -n <namespace> | grep cluster-autoscaler
{: pre}
Example output:
myhelmchart 1 Mon Jan 7 14:47:44 2019 DEPLOYED ibm-iks-cluster-autoscaler-1.0.1 kube-system
{: screen}
-
Upgrade the cluster autoscaler release to the latest version.
helm upgrade --force --recreate-pods <helm_chart_name> iks-charts/ibm-iks-cluster-autoscaler
{: pre}
-
Verify that the cluster autoscaler configmap
workerPoolsConfig.json
section is set to"enabled": true
for the worker pools that you want to scale.kubectl describe cm iks-ca-configmap -n kube-system
{: pre}
Example output
Name: iks-ca-configmap Namespace: kube-system Labels: <none> Annotations: kubectl.kubernetes.io/last-applied-configuration={"apiVersion":"v1","data":{"workerPoolsConfig.json":"[\n {\"name\": \"docs\",\"minSize\": 1,\"maxSize\": 3,\"enabled\":true}\n]\n"},"kind":"ConfigMap",... Data ==== workerPoolsConfig.json: ---- [ {"name": "<worker_pool","minSize": 1,"maxSize": 3,"enabled":true} ] Events: <none>
{: screen}
{: #ca_rm}
If you do not want to automatically scale your worker pools, you can uninstall the cluster autoscaler Helm chart. After the removal, you must resize or rebalance your worker pools manually. {: shortdesc}
Before you begin: Log in to your account. If applicable, target the appropriate resource group. Set the context for your cluster.
- Optional: To refer to your autoscaling settings later, make a backup of your configmap.
kubectl get cm iks-ca-configmap -o yaml > backup_configmap.yaml
{: pre}
-
In the cluster autoscaler configmap, remove the worker pool by setting the
"enabled"
value tofalse
.kubectl edit cm iks-ca-configmap -n kube-system
{: pre}
Example output
apiVersion: v1 data: workerPoolsConfig.json: | [ {"name": "<worker_pool>","minSize": 1,"maxSize": 2,"enabled":false} ] kind: ConfigMap metadata: creationTimestamp: 2018-11-29T18:43:46Z name: iks-ca-configmap namespace: kube-system resourceVersion: "2227854" selfLink: /api/v1/namespaces/kube-system/configmaps/iks-ca-configmap uid: b45d047b-f406-11e8-b7f0-82ddffc6e65e
{: screen}
If you already deleted the Helm chart and see a message such as iks-ca-configmap not found
, redeploy the cluster autoscaler Helm chart to your cluster and try to remove it again.
{: tip}
- Disable the add-on or uninstall the Helm chart.
Add-on
-
Disable the add-on.
ibmcloud ks cluster addon disable cluster-autoscaler --cluster <cluster_name>
{: pre} -
Verify the add-on is disabled.
ibmcloud ks cluster addon ls --cluster <cluster_name>
{: pre}
Helm chart
- List your existing Helm charts and note the name of the cluster autoscaler.
{: pre}
helm list --all-namespaces
- Remove the existing Helm chart from your cluster.
{: pre}
helm uninstall ibm-iks-cluster-autoscaler -n <namespace>
{: #ca_addon_ref}
This table refers to the cluster autoscaler add-on parameters. For Helm chart values, see Cluster autoscaler Helm chart parameter reference {: note}
Parameter | Description | Default value |
---|---|---|
`expander` | Specify how the cluster autoscaler determines which worker pool to scale if you have multiple worker pools. Possible values are:
|
random |
`ignoreDaemonSetsUtilization` | When set to `true`, the cluster autoscaler ignores DaemonSet pods when it calculates resource utilization for scale-down. | `false` |
`imagePullPolicy` | Specify when to pull the Docker image. Possible values are:
|
`Always` |
`livenessProbeFailureThreshold` | Specify the number of times that the `kubelet` retries a liveness probe after the pod starts and the first liveness probe fails. After the failure threshold is reached, the container is restarted and the pod is marked `Unready` for a readiness probe, if applicable. | `3` |
`livenessProbePeriodSeconds` | Specify the interval in seconds that the `kubelet` performs a liveness probe. | `10` |
`livenessProbeTimeoutSeconds` | Specify the time in seconds after which the liveness probe times out. | `10` |
`maxBulkSoftTaintCount` | Set the maximum number of worker nodes that can be tainted or untainted with `PreferNoSchedule` at the same time. To disable this feature, set to `0`. | `0` |
`maxBulkSoftTaintTime` | Set the maximum amount of time that worker nodes can be tainted or untainted with `PreferNoSchedule` at the same time. | `10m` |
`maxFailingTime` | Set the maximum time in minutes that the cluster autoscaler pod runs without a successfully completed action before the pod is automatically restarted. | `15m` |
`maxInactivity` | Set the maximum time in minutes that the cluster autoscaler pod runs without any recorded activity before the pod is automatically restarted. | `10m` |
`maxNodeProvisionTime` | Set the maximum amount of time in minutes that a worker node can take to begin provisioning before the cluster autoscaler cancels the scale-up request. | `120m` |
`maxRetryGap` | Set the maximum time in seconds to retry after failing to connect to the service API. Use this parameter and the `retryAttempts` parameter to adjust the retry window for the cluster autoscaler. | 60 |
`resourcesLimitsCPU` | Set the maximum amount of worker node CPU that the `ibm-iks-cluster-autoscaler` pod can consume. | `600m` |
`resourcesLimitsMemory` | Set the maximum amount of worker node memory that the `ibm-iks-cluster-autoscaler` pod can consume. | `600Mi` |
`resourcesRequestsCPU` | Set the minimum amount of worker node CPU that the `ibm-iks-cluster-autoscaler` pod starts with. | `200m` |
`resourcesRequestsMemory` | Set the minimum amount of worker node memory that the `ibm-iks-cluster-autoscaler` pod starts with. | `200Mi` |
`retryAttempts` | Set the maximum number of attempts to retry after failing to connect to the service API. Use this parameter and the `maxRetryGap` parameter to adjust the retry window for the cluster autoscaler. | 64 |
`scaleDownDelayAfterAdd` and `scaleDownDelayAfterDelete` | Set the amount of time in minutes that the cluster autoscaler waits to start scaling actions again after scaling up (`add`) or scaling down (`delete`). | `10m` |
`scaleDownUnneededTime` | Set the amount of time in minutes that a worker node must be unnecessary before it can be scaled down. | `10m` |
`scaleDownUtilizationThreshold` | Set the worker node utilization threshold. If the worker node utilization goes below the threshold, the worker node is considered to be scaled down. Worker node utilization is calculated as the sum of the CPU and memory resources that are requested by all pods that run on the worker node, divided by the worker node resource capacity. | `0.5` |
`scanInterval` | Set how often in minutes that the cluster autoscaler scans for workload usage that triggers scaling up or down. | `1m` |
`skipNodesWithLocalStorage` | When set to `true`, worker nodes that have pods that are saving data to local storage are not scaled down. | `true` |
`skipNodesWithSystemPods` | When set to `true`, worker nodes that have `kube-system` pods are not scaled down. Do not set the value to `false` because scaling down `kube-system` pods might have unexpected results. | `true` |
`workerPoolsConfig.json` | The worker pools that you want to autoscale, including their minimum and maximum number of worker nodes per zone:
If you enable a worker pool for autoscaling and then later add a zone to this worker pool, restart the cluster autoscaler pod so that it picks up this change: `kubectl delete pod -n kube-system `. By default, the `default` worker pool is **not** enabled, with a `max` value of `2` and a `min` value of `1`. | Disabled |
{: #ca_helm_ref}
This table refers to the cluster autoscaler Helm chart parameters. For add-on values, see Cluster autoscaler add-on parameter reference {: note}
Parameter | Description | Default value |
---|---|---|
`api_route` parameter | Set the [{{site.data.keyword.containerlong_notm}} API endpoint](/docs/containers?topic=containers-cli-plugin-kubernetes-service-cli#cs_cli_api) for the region that your cluster is in. | No default; uses the targeted region that your cluster is in. |
`resources.limits.cpu` parameter | Set the maximum amount of worker node CPU that the `ibm-iks-cluster-autoscaler` pod can consume. | `300m` |
`resources.limits.memory` parameter | Set the maximum amount of worker node memory that the `ibm-iks-cluster-autoscaler` pod can consume. | `300Mi` |
`resources.requests.cpu` parameter | Set the minimum amount of worker node CPU that the `ibm-iks-cluster-autoscaler` pod starts with. | `100m` |
`resources.requests.memory` parameter | Set the minimum amount of worker node memory that the `ibm-iks-cluster-autoscaler` pod starts with. | `100Mi` |
`maxNodeProvisionTime` parameter | Set the maximum amount of time in minutes that a worker node can take to begin provisioning before the cluster autoscaler cancels the scale-up request. | `120m` |
`scaleDownUnneededTime` parameter | Set the amount of time in minutes that a worker node must be unnecessary before it can be scaled down. | `10m` |
`scaleDownDelayAfterAdd`, `scaleDownDelayAfterDelete` parameters | Set the amount of time in minutes that the cluster autoscaler waits to start scaling actions again after scaling up (`add`) or scaling down (`delete`). | `10m` |
`scaleDownUtilizationThreshold` parameter | Set the worker node utilization threshold. If the worker node utilization goes below the threshold, the worker node is considered to be scaled down. Worker node utilization is calculated as the sum of the CPU and memory resources that are requested by all pods that run on the worker node, divided by the worker node resource capacity. | `0.5` |
`scanInterval` parameter | Set how often in minutes that the cluster autoscaler scans for workload usage that triggers scaling up or down. | `1m` |
`expander` parameter | Specify how the cluster autoscaler determines which worker pool to scale if you have multiple worker pools. Possible values are:
|
random |
`ignoreDaemonSetsUtilization` | When set to `true`, the cluster autoscaler ignores DaemonSet pods when it calculates resource utilization for scale-down. | `false` |
`maxBulkSoftTaintCount` | Set the maximum number of worker nodes that can be tainted or untainted with `PreferNoSchedule` at the same time. To disable this feature, set to `0`. | `0` |
`maxBulkSoftTaintTime` | Set the maximum amount of time that worker nodes can be tainted or untainted with `PreferNoSchedule` at the same time. | `10m` |
`skipNodes.withLocalStorage` parameter | When set to `true`, worker nodes that have pods that are saving data to local storage are not scaled down. | `true` |
`skipNodes.withSystemPods` parameter | When set to `true`, worker nodes that have `kube-system` pods are not scaled down. Do not set the value to `false` because scaling down `kube-system` pods might have unexpected results. | `true` |
`image.repository` parameter | Specify the cluster autoscaler Docker image to use. To get a list of cluster autoscaler images, target the global {{site.data.keyword.registrylong_notm}} API by running ibmcloud cr region-set global . Then, list the available cluster autoscaler images by running ibmcloud cr images --include-ibm | grep cluster-autoscaler . To review the supported Kubernetes versions for each cluster autoscaler image version, [download the source code `tar` file](https://cloud.ibm.com/kubernetes/helm/iks-charts/ibm-iks-cluster-autoscaler) and open the `RELEASENOTES.MD` file. |
`icr.io/iks-charts/ibm-iks-cluster-autoscaler` |
`image.pullPolicy` parameter | Specify when to pull the Docker image. Possible values are:
|
`IfNotPreset` |
`livenessProbe.periodSeconds` | Specify the interval in seconds that the `kubelet` performs a liveness probe. | `10` |
`livenessProbe.failureThreshold` | Specify the number of times that the `kubelet` retries a liveness probe after the pod starts and the first liveness probe fails. After the failure threshold is reached, the container is restarted and the pod is marked `Unready` for a readiness probe, if applicable. | `3` |
`livenessProbe.successThreshold` | Specify the minimum, consecutive number of times that the liveness probe must be successful after a previous failure before the pod is marked `Ready`. If you set a liveness probe, you must set this value to at least `1`. | `1` |
`livenessProbe.timeoutSeconds` | Specify the time in seconds after which the liveness probe times out. | `10` |
`max-inactivity` | Set the maximum time in minutes that the cluster autoscaler pod runs without any recorded activity before the pod is automatically restarted. | `10m` |
`max-failing-time` | Set the maximum time in minutes that the cluster autoscaler pod runs without a successfully completed action before the pod is automatically restarted. | `15m` |
`customImageVersion` | To override the default installation version, specify the version of the cluster autoscaler Helm chart that you want to install. | N/A |
`maxRetryGap` | Set the maximum time in seconds to retry after failing to connect to the service API. Use this parameter and the `retryAttempts` parameter to adjust the retry window for the cluster autoscaler. | 60 |
`retryAttempts` | Set the maximum number of attempts to retry after failing to connect to the service API. Use this parameter and the `maxRetryGap` parameter to adjust the retry window for the cluster autoscaler. | 32 |
`workerpools` parameter | The worker pools that you want to autoscale, including their minimum and maximum number of worker nodes per zone. These settings are mirrored in the [cluster autoscaler config map](#ca_cm). To set the worker pool, format the option as follows: --set workerpools[0].<pool_name>.max=<number_of_workers>,workerpools[0].<pool_name>.min=<number_of_workers>,workerpools[0].<pool_name>.enabled=(true|false) Understanding the `--set workerpools` options:
If you enable a worker pool for autoscaling and then later add a zone to this worker pool, restart the cluster autoscaler pod so that it picks up this change: `kubectl delete pod -n kube-system `. By default, the `default` worker pool is **not** enabled, with a `max` value of `2` and a `min` value of `1`. | Disabled |