Chapter 10. Scaling Compute nodes with director Operator
If you require more or fewer compute resources for your overcloud, you can scale the number of Compute nodes according to your requirements.
10.1. Adding Compute nodes to your overcloud with director Operator Copy linkLink copied to clipboard!
To add more Compute nodes to your overcloud, you must increase the node count for the compute OpenStackBaremetalSet resource. When a new node is provisioned, you create a new OpenStackConfigGenerator resource to generate a new set of Ansible playbooks, then use the OpenStackConfigVersion to create or update the OpenStackDeploy object to reapply the Ansible configuration to your overcloud.
Procedure
Check that you have enough hosts in a ready state in the
openshift-machine-apinamespace:$ oc get baremetalhosts -n openshift-machine-apiFor more information on managing your bare-metal hosts, see Managing bare metal hosts.
Increase the
countparameter for thecomputeOpenStackBaremetalSetresource:$ oc patch openstackbaremetalset compute --type=merge --patch '{"spec":{"count":3}}' -n openstackThe
OpenStackBaremetalSetresource automatically provisions the new nodes with the Red Hat Enterprise Linux base operating system.Wait until the provisioning process completes. Check the nodes periodically to determine the readiness of the nodes:
$ oc get baremetalhosts -n openshift-machine-api $ oc get openstackbaremetalset-
Optional: Reserve static IP addresses for networks on the new Compute nodes. For more information, see Reserving static IP addresses for added Compute nodes with the
OpenStackNetConfigCRD. -
Generate the Ansible playbooks by using
OpenStackConfigGenerator. For more information, see Creating Ansible playbooks for overcloud configuration with the OpenStackConfigGenerator CRD. - Apply the overcloud configuration. For more information, see Applying overcloud configuration with director Operator.
10.2. Reserving static IP addresses for added Compute nodes with the OpenStackNetConfig CRD Copy linkLink copied to clipboard!
Use the OpenStackNetConfig CRD to define IP addresses that you want to reserve for the Compute node you added to your overcloud.
Use the following commands to view the OpenStackNetConfig CRD definition and specification schema:
$ oc describe crd openstacknetconfig
$ oc explain openstacknetconfig.spec
Procedure
-
Open the
openstacknetconfig.yamlfile for the overcloud on your workstation. Add the following configuration to
openstacknetconfig.yamlto create theOpenStackNetConfigcustom resource (CR):apiVersion: osp-director.openstack.org/v1beta1 kind: OpenStackNetConfig metadata: name: openstacknetconfigReserve static IP addresses for networks on specific nodes:
spec: ... reservations: controller-0: ipReservations: ctlplane: 172.22.0.120 compute-0: ipReservations: ctlplane: 172.22.0.140 internal_api: 172.17.0.40 storage: 172.18.0.40 tenant: 172.20.0.40 ... //The key for the ctlplane VIPs controlplane: ipReservations: ctlplane: 172.22.0.110 external: 10.0.0.10 internal_api: 172.17.0.10 storage: 172.18.0.10 storage_mgmt: 172.19.0.10 macReservations: {}NoteReservations have precedence over any autogenerated IP addresses.
-
Save the
openstacknetconfig.yamldefinition file. Create the overcloud network configuration:
$ oc create -f openstacknetconfig.yaml -n openstack
Verification
To verify that the overcloud network configuration is created, view the resources for the overcloud network configuration:
$ oc get openstacknetconfig/openstacknetconfigView the
OpenStackNetConfigAPI and child resources:$ oc get openstacknetconfig/openstacknetconfig -n openstack $ oc get openstacknetattachment -n openstack $ oc get openstacknet -n openstackIf you see errors, check the underlying
network-attach-definitionand node network configuration policies:$ oc get network-attachment-definitions -n openstack $ oc get nncp
10.3. Removing Compute nodes from your overcloud with director Operator Copy linkLink copied to clipboard!
To remove a Compute node from your overcloud, you must disable the Compute node, mark it for deletion, and decrease the node count for the compute OpenStackBaremetalSet resource.
If you scale the overcloud with a new node in the same role, the node reuses the host names starting with lowest ID suffix and corresponding IP reservation.
Prerequisites
- The workloads on the Compute nodes have been migrated to other Compute nodes. For more information, see Migrating virtual machine instances between Compute nodes.
Procedure
Access the remote shell for
openstackclient:$ oc rsh -n openstack openstackclientIdentify the Compute node that you want to remove:
$ openstack compute service listDisable the Compute service on the node to prevent the node from scheduling new instances:
$ openstack compute service set <hostname> nova-compute --disableAnnotate the bare-metal node to prevent Metal3 from starting the node:
$ oc annotate baremetalhost <node> baremetalhost.metal3.io/detached=true $ oc logs --since=1h <metal3-pod> metal3-baremetal-operator | grep -i detach $ oc get baremetalhost <node> -o json | jq .status.operationalStatus "detached"-
Replace
<node>with the name of theBareMetalHostresource. -
Replace
<metal3-pod>with the name of yourmetal3pod.
-
Replace
Log in to the Compute node as the
rootuser and shut down the bare-metal node:[root@compute-0 ~]# shutdown -h nowIf the Compute node is not accessible, complete the following steps:
-
Log in to a Controller node as the
rootuser. If Instance HA is enabled, disable the STONITH device for the Compute node:
[root@controller-0 ~]# pcs stonith disable <stonith_resource_name>-
Replace
<stonith_resource_name>with the name of the STONITH resource that corresponds to the node. The resource name uses the format<resource_agent>-<host_mac>. You can find the resource agent and the host MAC address in theFencingConfigsection of thefencing.yamlfile.
-
Replace
- Use IPMI to power off the bare-metal node. For more information, see your hardware vendor documentation.
-
Log in to a Controller node as the
Retrieve the
BareMetalHostresource that corresponds to the node that you want to remove:$ oc get openstackbaremetalset compute -o json | jq '.status.baremetalHosts | to_entries[] | "\(.key) => \(.value | .hostRef)"' "compute-0, openshift-worker-3" "compute-1, openshift-worker-4"To change the status of the
annotatedForDeletionparameter totruein theOpenStackBaremetalSetresource, annotate theBareMetalHostresource withosp-director.openstack.org/delete-host=true:$ oc annotate -n openshift-machine-api bmh/openshift-worker-3 osp-director.openstack.org/delete-host=true --overwriteOptional: Confirm that the
annotatedForDeletionstatus has changed totruein theOpenStackBaremetalSetresource:$ oc get openstackbaremetalset compute -o json -n openstack | jq .status { "baremetalHosts": { "compute-0": { "annotatedForDeletion": true, "ctlplaneIP": "192.168.25.105/24", "hostRef": "openshift-worker-3", "hostname": "compute-0", "networkDataSecretName": "compute-cloudinit-networkdata-openshift-worker-3", "provisioningState": "provisioned", "userDataSecretName": "compute-cloudinit-userdata-openshift-worker-3" }, "compute-1": { "annotatedForDeletion": false, "ctlplaneIP": "192.168.25.106/24", "hostRef": "openshift-worker-4", "hostname": "compute-1", "networkDataSecretName": "compute-cloudinit-networkdata-openshift-worker-4", "provisioningState": "provisioned", "userDataSecretName": "compute-cloudinit-userdata-openshift-worker-4" } }, "provisioningStatus": { "readyCount": 2, "reason": "All requested BaremetalHosts have been provisioned", "state": "provisioned" } }Decrease the
countparameter for thecompute OpenStackBaremetalSetresource:$ oc patch openstackbaremetalset compute --type=merge --patch '{"spec":{"count":1}}' -n openstackWhen you reduce the resource count of the
OpenStackBaremetalSetresource, you trigger the corresponding controller to handle the resource deletion, which causes the following actions:-
Director Operator deletes the corresponding IP reservations from
OpenStackIPSetandOpenStackNetConfigfor the deleted node. Director Operator flags the IP reservation entry in the
OpenStackNetresource as deleted.$ oc get osnet ctlplane -o json -n openstack | jq .reservations { "compute-0": { "deleted": true, "ip": "172.22.0.140" }, "compute-1": { "deleted": false, "ip": "172.22.0.100" }, "controller-0": { "deleted": false, "ip": "172.22.0.120" }, "controlplane": { "deleted": false, "ip": "172.22.0.110" }, "openstackclient-0": { "deleted": false, "ip": "172.22.0.251" }
-
Director Operator deletes the corresponding IP reservations from
-
Optional: To make the IP reservations of the deleted
OpenStackBaremetalSetresource available for other roles to use, set the value of thespec.preserveReservationsparameter to false in theOpenStackNetConfigobject. Access the remote shell for
openstackclient:$ oc rsh openstackclient -n openstackRemove the Compute service entries from the overcloud:
$ openstack compute service list $ openstack compute service delete <service-id>Check the Compute network agents entries in the overcloud and remove them if they exist:
$ openstack network agent list $ for AGENT in $(openstack network agent list --host <scaled-down-node> -c ID -f value) ; do openstack network agent delete $AGENT ; doneExit from
openstackclient:$ exit