1 heat_template_version: 2015-04-30
4 Software Config to drive os-net-config to configure multiple interfaces
5 for the controller role.
10 description: IP address/subnet on the ctlplane network
14 description: IP address/subnet on the external network
18 description: IP address/subnet on the internal API network
22 description: IP address/subnet on the storage network
26 description: IP address/subnet on the storage mgmt network
30 description: IP address/subnet on the tenant network
32 ManagementIpSubnet: # Only populated when including environments/network-management.yaml
34 description: IP address/subnet on the management network
36 ExternalNetworkVlanID:
38 description: Vlan ID for the external network traffic.
40 InternalApiNetworkVlanID:
42 description: Vlan ID for the internal_api network traffic.
46 description: Vlan ID for the storage network traffic.
48 StorageMgmtNetworkVlanID:
50 description: Vlan ID for the storage mgmt network traffic.
54 description: Vlan ID for the tenant network traffic.
56 ExternalInterfaceDefaultRoute:
58 description: default route for the external network
60 ControlPlaneSubnetCidr: # Override this via parameter_defaults
62 description: The subnet CIDR of the control plane network.
64 ControlPlaneDefaultRoute: # Override this via parameter_defaults
65 description: The subnet CIDR of the control plane network.
67 DnsServers: # Override this via parameter_defaults
69 description: A list of DNS servers (2 max for some implementations) that will be added to resolv.conf.
70 type: comma_delimited_list
71 EC2MetadataIp: # Override this via parameter_defaults
72 description: The IP address of the EC2 metadata server.
77 type: OS::Heat::StructuredConfig
79 group: os-apply-config
87 dns_servers: {get_param: DnsServers}
93 - - {get_param: ControlPlaneIp}
94 - {get_param: ControlPlaneSubnetCidr}
97 ip_netmask: 169.254.169.254/32
98 next_hop: {get_param: EC2MetadataIp}
99 {%- if external_net_af == 6 %}
102 next_hop: {get_param: ControlPlaneDefaultRoute}
104 {%- set nic_index = 2 %}
105 {%- if 'private_network' in enabled_networks %}
108 name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %}
112 ip_netmask: {get_param: TenantIpSubnet}
116 name: {get_input: bridge_name}
117 dns_servers: {get_param: DnsServers}
121 ip_netmask: {get_param: ExternalIpSubnet}
125 next_hop: {get_param: ExternalInterfaceDefaultRoute}
129 name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %}
130 # force the MAC address of the bridge to this interface
132 {%- if 'storage_network' in enabled_networks %}
135 name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %}
139 ip_netmask: {get_param: StorageIpSubnet}
141 {%- if 'api_network' in enabled_networks %}
144 name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %}
148 ip_netmask: {get_param: InternalApiIpSubnet}
153 description: The OsNetConfigImpl resource.
154 value: {get_resource: OsNetConfigImpl}