IBM Cloud Docs
Enabling the cluster autoscaler add-on in your cluster

Enabling the cluster autoscaler add-on in your cluster

You can enable the add-on from the console or the command the line.

Enabling the cluster autoscaler add-on from the console

  1. From the Red Hat OpenShift on IBM Cloud cluster dashboard, 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

Enabling the cluster autoscaler add-on from the CLI

  1. Enable the cluster-autoscaler add-on by running the following command.

    ibmcloud oc cluster addon enable cluster-autoscaler --cluster <cluster_name>
    

    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
    
  2. Verify that the add-on is installed and Ready.

    ibmcloud oc cluster addon ls --cluster <cluster_name>
    

    Example output

    NAME                 Version   Health State   Health Status   
    cluster-autoscaler   1.0.1     normal         Addon Ready
    
  3. No worker pools are configured for scaling after enabling the add-on. To set up autoscaling on your worker pools, edit the cluster autoscaler configmap.

Updating the cluster autoscaler add-on

This topic applies only to the cluster autoscaler add-on.

If you upgrade your cluster to a version that isn't supported by the cluster autoscaler add-on, your apps might experience downtime and your cluster might not scale.

The cluster autoscaler has two types of updates.

Patch updates
Patch updates are delivered automatically by IBM and don't 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.
  1. 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 oc cluster addon ls --cluster <cluster_name>
    
  2. Update the cluster autoscaler add-on.

    ibmcloud oc cluster addon update cluster-autoscaler --version <version-to-update> --cluster <cluster_name>
    
  3. Verify the add-on is successfully updated and Ready.

    ibmcloud oc cluster addon ls --cluster <cluster_name>
    

Removing the cluster autoscaler add-on from the console

Before disabling the add-on, edit the autoscaler ConfigMap to stop scaling your working pools.

  1. From the Red Hat OpenShift on IBM Cloud cluster dashboard, 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 Uninstall

Removing the cluster autoscaler add-on from the CLI

Before disabling the add-on, edit the autoscaler ConfigMap to stop scaling your working pools.

  1. Disable the cluster-autoscaler add-on.

    ibmcloud oc cluster addon disable cluster-autoscaler --cluster <cluster_name>
    
  2. Verify that the add-on was removed.

    ibmcloud oc cluster addon ls --cluster <cluster_name>