Chapter 5. Finalize Networking Settings
At this point, you should have completed the necessary settings to assign ports properly on HCI nodes. However, on those nodes you still need to map the StorageMgmtPort to a physical NIC.
From the default Heat template collection, choose the Compute NIC configuration template suitable for your environment:
-
/usr/share/openstack-tripleo-heat-templates/network/config/single-nic-vlans/compute.yaml -
/usr/share/openstack-tripleo-heat-templates/network/config/single-nic-linux-bridge-vlans/compute.yaml -
/usr/share/openstack-tripleo-heat-templates/network/config/multiple-nics/compute.yaml /usr/share/openstack-tripleo-heat-templates/network/config/bond-with-vlans/compute.yamlSee the
README.mdon each template’s respective directory for details about the NIC configuration.
-
-
Create a new directory within
~/templatescallednic-configs. Copy your chosen template to~/templates/nic-configs/and rename itcompute-hci.yaml. Ensure the following definition is in the
parameters:section of your new~/templates/nic-configs/compute-hci.yaml:StorageMgmtNetworkVlanID: default: 40 description: Vlan ID for the storage mgmt network traffic. type: numberAdd the definition if it does not already exist (as is with
…/single-nic-vlans/compute.yaml).Map
StorageMgmtNetworkVlanIDto a specific NIC on each HCI node. For example, if you chose to trunk VLANs to a single NIC (that is, you copied…/single-nic-vlans/compute.yaml), then add the following entry to thenetwork_config:section of~/templates/nic-configs/compute-hci.yaml:- type: vlan device: em2 mtu: 9000 # 1 use_dhcp: false vlan_id: {get_param: StorageMgmtNetworkVlanID} addresses: - ip_netmask: {get_param: StorageMgmtIpSubnet}- 1
- When mapping a NIC to
StorageMgmtNetworkVlanID, we recommend that you set themtuto9000(jumbo frames). This MTU setting provides measurable performance improvement to the performance of Ceph. See Configure MTU Settings in Director (from the Networking Guide) and Configuring Jumbo Frames (from Advanced Overcloud Customization) for related details.
Create a networking environment file,
~/templates/network.yaml. This file should contain the following:resource_registry: OS::TripleO::ComputeHCI::Net::SoftwareConfig: /home/stack/templates/nic-configs/compute-hci.yaml
This file will be used later to invoke the customized Compute NIC template (
~/templates/nic-configs/compute-hci.yaml) during overcloud deployment (in Chapter 6, Deployment).
You can use ~/templates/network.yaml to define any networking-related parameters or add any customized networking Heat templates. See Creating a Network Environment File from Advanced Overcloud Customization) for more details.
