Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

Openshift Admin: How to add node to the cluster in openshift ARO


New Method : How to Add Nodes to ARO (Worker Node Scaling)


If you are using the latest ARO architecture, which now uses Azure Machine Pools (based on the OpenShift Cluster API) instead of classic VMSS.

This newer approach abstracts away VMSS management from the user, and ARO uses ARM-managed resources and custom Azure Resource Providers to provision nodes under the hood.


๐Ÿ” So, where are your nodes coming from?

In the latest ARO versions:

  • Worker nodes are not shown as standalone VMSS in your Azure subscription.
  • They are instead part of ARO-managed infrastructure, controlled by OpenShift Machine API and ARO Resource Provider.

โœ… What You Can Do Instead

๐Ÿ”ง Use OpenShift MachineSet to Add/Scale Nodes

  1. List MachineSets: oc get machinesets -n openshift-machine-api
  2. Check your current node count: oc get nodes
  3. Scale a MachineSet:
    Increase replicas of a MachineSet: oc scale machineset <machineset-name> -n openshift-machine-api --replicas=6
  4. Verify nodes: oc get nodes

๐Ÿ›  Example: Scaling Worker Nodes from 3 โ†’ 6

# View existing MachineSets
oc get machinesets -n openshift-machine-api

# Example output:
# NAME                     DESIRED  CURRENT  READY
# aro-clustername-worker-<zone>   3        3       3

# Scale it
oc scale machineset aro-clustername-worker-<zone> -n openshift-machine-api --replicas=6
Code language: PHP (php)

The MachineSet controller will provision new worker VMs via AROโ€™s API integration and automatically register them to the cluster.


๐Ÿงญ Where to See the Nodes in Azure?

Even though no VMSS is shown, you can:

  • Go to Azure โ†’ Resource Group (e.g., MC_<resource-group>_<cluster-name>_<region>)
  • Filter for Virtual Machines โ€” you’ll see VMs named like: aro-<clustername>-worker-<zone>-<random>

These are the actual worker VMs, but ARO manages their lifecycle โ€” so do not modify them directly.


๐Ÿ“Œ Summary

TaskWhere to Do It
Scale nodesoc scale machineset
View nodesoc get nodes
VM visibilityAzure Resource Group โ†’ Virtual Machines
Avoid touchingNo manual VMSS or VM operations in Azure

Old Method : How to Add Nodes to ARO (Worker Node Scaling)

๐Ÿ” Key Concept: ARO Cluster Node Scaling

ARO does not support self-managed scaling of worker nodes via the OpenShift UI or CLI directly. Instead, you must scale the cluster using Azure-native methods, because Microsoft fully manages the ARO control plane and infrastructure.


ARO worker nodes run as Azure Virtual Machine Scale Sets (VMSS). You scale the cluster by modifying the VMSS instance count.

๐Ÿ“Œ Option 1: Azure Portal (Easiest Way)

  1. Go to Azure Portal
  2. Navigate to your ARO Resource Group (usually named like aro-<clustername>).
  3. Find the VM Scale Set named something like aro-<clustername>-worker or similar.
  4. Click the “Instance count” setting.
  5. Increase the number of instances (nodes).
  6. Click “Save”.

๐Ÿ’ก OpenShift will automatically recognize and schedule pods on the new nodes.


๐Ÿ“Œ Option 2: Azure CLI

You can scale using az vmss commands:

# Get the VMSS name
az vmss list --resource-group aro-<your-rg-name> --query "[].name"

# Scale to desired count (example: 6 nodes)
az vmss scale \
  --resource-group aro-<your-rg-name> \
  --name <vmss-name> \
  --new-capacity 6
Code language: PHP (php)

๐Ÿ“Œ Option 3: Terraform (Infrastructure-as-Code)

If you’re managing ARO via Terraform, adjust your VMSS configuration:

resource "azurerm_linux_virtual_machine_scale_set" "aro_worker" {
  name                = "aro-worker"
  resource_group_name = azurerm_resource_group.aro.name
  location            = azurerm_resource_group.aro.location

  # Change this to scale
  instances           = 6
  ...
}
Code language: PHP (php)

โš ๏ธ Important Notes

  • You cannot add nodes via OpenShift Web Console or CLI like traditional OpenShift clusters.
  • ARO does not allow you to provision control plane (master) nodes or custom node pools โ€” Microsoft manages them.
  • If you want different node types (e.g., GPU, FPGAs, spot VMs), you must use MachineSets bound to specific VMSS configurations โ€” but this is an advanced and Azure-integrated setup.

๐Ÿง  Tips

  • For autoscaling, you can enable VMSS autoscaling (via Azure Monitor) for dynamic scale-out.
  • Use oc get nodes to verify new nodes are ready and oc adm top nodes to monitor resource usage.

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
Iโ€™m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at <a href="https://www.cotocus.com/">Cotocus</a>. I share tech blog at <a href="https://www.devopsschool.com/">DevOps School</a>, travel stories at <a href="https://www.holidaylandmark.com/">Holiday Landmark</a>, stock market tips at <a href="https://www.stocksmantra.in/">Stocks Mantra</a>, health and fitness guidance at <a href="https://www.mymedicplus.com/">My Medic Plus</a>, product reviews at <a href="https://www.truereviewnow.com/">TrueReviewNow</a> , and SEO strategies at <a href="https://www.wizbrand.com/">Wizbrand.</a> Do you want to learn <a href="https://www.quantumuting.com/">Quantum Computing</a>? <strong>Please find my social handles as below;</strong> <a href="https://www.rajeshkumar.xyz/">Rajesh Kumar Personal Website</a> <a href="https://www.youtube.com/TheDevOpsSchool">Rajesh Kumar at YOUTUBE</a> <a href="https://www.instagram.com/rajeshkumarin">Rajesh Kumar at INSTAGRAM</a> <a href="https://x.com/RajeshKumarIn">Rajesh Kumar at X</a> <a href="https://www.facebook.com/RajeshKumarLog">Rajesh Kumar at FACEBOOK</a> <a href="https://www.linkedin.com/in/rajeshkumarin/">Rajesh Kumar at LINKEDIN</a> <a href="https://www.wizbrand.com/rajeshkumar">Rajesh Kumar at WIZBRAND</a> <a href="https://www.rajeshkumar.xyz/dailylogs">Rajesh Kumar DailyLogs</a>

Related Posts

List of all Job Roles, Job Titles in Software and IT Companies

The software and IT industry is home to a diverse array of job roles and titles, reflecting the dynamic and ever-evolving nature of technology. From core technical…

Read More

Best DevOps Tools in 2024

hereโ€™s a clear, structured breakdown of the Best DevOps Tools (grouped by categories), so you can use it for learning, training, or posts. ๐Ÿš€ Best DevOps Tools…

Read More

OpenShift Install & Configurations using OpenShift Local in windows laptops/desktops

Below is the 100% correct and updated step-by-step guide to install and configure OpenShift Local (aka CRC) on Windows 10/11 laptops or desktops using the correct crc…

Read More

Openshift: How to configure Azure openshift ARO with Custom Domain

Step-by-Step Guide: Configuring Azure Red Hat OpenShift (ARO) with a Custom Domain Setting up a custom domain for your ARO cluster involves both Azure and DNS provider…

Read More

Openshift: Lab 10 – View performance information using the OpenShift web console

Rajesh Kumar Iโ€™m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at Cotocus. I share tech blog at DevOps School, travel stories at…

Read More

Openshift: How to add Helm Repository in Openshift

Adding a Helm repository in OpenShift is a common step to manage and deploy Helm charts in your OpenShift cluster. OpenShift supports Helm CLI out of the…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x