Scaling BMS Nodes Horizontally
You can add a physical node as the BMS management node to manage the provisioning and configuration of all bare metal instances.
Changing the Hostname
Change the hostname of the new node to baremetal. For details, see Configuring Hostnames.
Disabling the Firewall and SELinux
Disable the firewall and SELinux. For details, see Disabling the Firewall and SELinux.
Configuring DNS
Perform the following operations on the Ironic manager node (baremetal).
- Modify the /etc/hosts file.
- Open the file.
1vi /etc/hosts - Press i to enter the insert mode and add the following content in the blank area:
1 2 3 4
NIC IP address of the management node controller NIC IP address of the x86 compute node x86-compute NIC IP address of the Arm compute node arm-compute IP address of the Ironic management node baremetal
- Press Esc, type :wq!, and press Enter to save the file and exit.
- Open the file.
- Modify the hosts file on non-ironic management nodes (controller, x86-compute and arm-compute).
- Open the file.
1vi /etc/hosts - Press i to enter the insert mode and add the following content in the blank area:
1IP address of the Ironic management node baremetal
- Press Esc, type :wq!, and press Enter to save the file and exit.
- Open the file.
Configuring NTP
Perform the following operations on the Ironic manager node (baremetal).
- Install chrony.
1yum -y install chrony
- Set a unified time zone. For example, set the time zone to Asia/Shanghai.
1timedatectl set-timezone Asia/Shanghai
- Modify the /etc/chrony.conf file.
vi /etc/chrony.conf
- Press i to enter the insert mode, add the following content to the file, and delete or comment out other contents related to server:
1server controller iburst

- Press Esc, type :wq!, and press Enter to save the file and exit.
- Set a unified time zone. For example, set the time zone to Asia/Shanghai.
- Enable the chrony service and configure it to start as the system boots.
1 2
systemctl enable chronyd.service systemctl restart chronyd.service
- Verify time synchronization.
1chronyc sourcesThe Ironic management node shows that the controller node is the clock source.

Parent topic: Installing and deploying the BMS.