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 ExternalNetworkVlanID:
34 description: Vlan ID for the external network traffic.
36 InternalApiNetworkVlanID:
38 description: Vlan ID for the internal_api network traffic.
42 description: Vlan ID for the storage network traffic.
44 StorageMgmtNetworkVlanID:
46 description: Vlan ID for the storage mgmt network traffic.
50 description: Vlan ID for the tenant network traffic.
52 ExternalInterfaceDefaultRoute:
54 description: default route for the external network
56 ControlPlaneSubnetCidr: # Override this via parameter_defaults
58 description: The subnet CIDR of the control plane network.
60 ControlPlaneDefaultRoute: # Override this via parameter_defaults
61 description: The subnet CIDR of the control plane network.
63 DnsServers: # Override this via parameter_defaults
65 description: A list of DNS servers (2 max for some implementations) that will be added to resolv.conf.
67 EC2MetadataIp: # Override this via parameter_defaults
68 description: The IP address of the EC2 metadata server.
73 type: OS::Heat::StructuredConfig
75 group: os-apply-config
83 dns_servers: {get_param: DnsServers}
89 - - {get_param: ControlPlaneIp}
90 - {get_param: ControlPlaneSubnetCidr}
93 ip_netmask: 169.254.169.254/32
94 next_hop: {get_param: EC2MetadataIp}
97 name: {get_input: bridge_name}
101 ip_netmask: {get_param: ExternalIpSubnet}
104 ip_netmask: 0.0.0.0/0
105 next_hop: {get_param: ExternalInterfaceDefaultRoute}
110 # force the MAC address of the bridge to this interface
115 description: The OsNetConfigImpl resource.
116 value: {get_resource: OsNetConfigImpl}