This is a cache of https://docs.okd.io/4.12/machine_management/user_infra/adding-rhv-compute-user-infra.html. It is a snapshot of the page at 2024-09-26T18:44:36.282+0000.
Adding compute machines to a cluster on RHV - Managing user-provisioned infrastructure manually | Machine management | OKD 4.12
×

In OKD version 4.12, you can add more compute machines to a user-provisioned OKD cluster on oVirt.

Prerequisites
  • You installed a cluster on oVirt with user-provisioned infrastructure.

Adding more compute machines to a cluster on oVirt

Procedure
  1. Modify the inventory.yml file to include the new workers.

  2. Run the create-templates-and-vms Ansible playbook to create the disks and virtual machines:

    $ ansible-playbook -i inventory.yml create-templates-and-vms.yml
  3. Run the workers.yml Ansible playbook to start the virtual machines:

    $ ansible-playbook -i inventory.yml workers.yml
  4. CSRs for new workers joining the cluster must be approved by the administrator. The following command helps to approve all pending requests:

    $ oc get csr -ojson | jq -r '.items[] | select(.status == {} ) | .metadata.name' | xargs oc adm certificate approve