Merge "OVN heat templates"
[apex-tripleo-heat-templates.git] / network / config / bond-with-vlans / compute.yaml
1 heat_template_version: 2015-04-30
2
3 description: >
4   Software Config to drive os-net-config with 2 bonded nics on a bridge
5   with VLANs attached for the compute role.
6
7 parameters:
8   ControlPlaneIp:
9     default: ''
10     description: IP address/subnet on the ctlplane network
11     type: string
12   ExternalIpSubnet:
13     default: ''
14     description: IP address/subnet on the external network
15     type: string
16   InternalApiIpSubnet:
17     default: ''
18     description: IP address/subnet on the internal API network
19     type: string
20   StorageIpSubnet:
21     default: ''
22     description: IP address/subnet on the storage network
23     type: string
24   StorageMgmtIpSubnet:
25     default: ''
26     description: IP address/subnet on the storage mgmt network
27     type: string
28   TenantIpSubnet:
29     default: ''
30     description: IP address/subnet on the tenant network
31     type: string
32   ManagementIpSubnet: # Only populated when including environments/network-management.yaml
33     default: ''
34     description: IP address/subnet on the management network
35     type: string
36   BondInterfaceOvsOptions:
37     default: ''
38     description: The ovs_options string for the bond interface. Set things like
39                  lacp=active and/or bond_mode=balance-slb using this option.
40     type: string
41     constraints:
42       - allowed_pattern: "^((?!balance.tcp).)*$"
43         description: |
44           The balance-tcp bond mode is known to cause packet loss and
45           should not be used in BondInterfaceOvsOptions.
46   ExternalNetworkVlanID:
47     default: 10
48     description: Vlan ID for the external network traffic.
49     type: number
50   InternalApiNetworkVlanID:
51     default: 20
52     description: Vlan ID for the internal_api network traffic.
53     type: number
54   StorageNetworkVlanID:
55     default: 30
56     description: Vlan ID for the storage network traffic.
57     type: number
58   StorageMgmtNetworkVlanID:
59     default: 40
60     description: Vlan ID for the storage mgmt network traffic.
61     type: number
62   TenantNetworkVlanID:
63     default: 50
64     description: Vlan ID for the tenant network traffic.
65     type: number
66   ManagementNetworkVlanID:
67     default: 60
68     description: Vlan ID for the management network traffic.
69     type: number
70   ControlPlaneSubnetCidr: # Override this via parameter_defaults
71     default: '24'
72     description: The subnet CIDR of the control plane network.
73     type: string
74   ControlPlaneDefaultRoute: # Override this via parameter_defaults
75     description: The default route of the control plane network.
76     type: string
77   ExternalInterfaceDefaultRoute: # Not used by default in this template
78     default: '10.0.0.1'
79     description: The default route of the external network.
80     type: string
81   ManagementInterfaceDefaultRoute: # Commented out by default in this template
82     default: unset
83     description: The default route of the management network.
84     type: string
85   DnsServers: # Override this via parameter_defaults
86     default: []
87     description: A list of DNS servers (2 max for some implementations) that will be added to resolv.conf.
88     type: comma_delimited_list
89   EC2MetadataIp: # Override this via parameter_defaults
90     description: The IP address of the EC2 metadata server.
91     type: string
92
93 resources:
94   OsNetConfigImpl:
95     type: OS::Heat::StructuredConfig
96     properties:
97       group: os-apply-config
98       config:
99         os_net_config:
100           network_config:
101             -
102               type: interface
103               name: nic1
104               use_dhcp: false
105               dns_servers: {get_param: DnsServers}
106               addresses:
107                 -
108                   ip_netmask:
109                     list_join:
110                       - '/'
111                       - - {get_param: ControlPlaneIp}
112                         - {get_param: ControlPlaneSubnetCidr}
113               routes:
114                 -
115                   ip_netmask: 169.254.169.254/32
116                   next_hop: {get_param: EC2MetadataIp}
117                 -
118                   default: true
119                   next_hop: {get_param: ControlPlaneDefaultRoute}
120             -
121               type: ovs_bridge
122               name: {get_input: bridge_name}
123               members:
124                 -
125                   type: ovs_bond
126                   name: bond1
127                   ovs_options: {get_param: BondInterfaceOvsOptions}
128                   members:
129                     -
130                       type: interface
131                       name: nic2
132                       primary: true
133                     -
134                       type: interface
135                       name: nic3
136                 -
137                   type: vlan
138                   device: bond1
139                   vlan_id: {get_param: InternalApiNetworkVlanID}
140                   addresses:
141                     -
142                       ip_netmask: {get_param: InternalApiIpSubnet}
143                 -
144                   type: vlan
145                   device: bond1
146                   vlan_id: {get_param: StorageNetworkVlanID}
147                   addresses:
148                     -
149                       ip_netmask: {get_param: StorageIpSubnet}
150                 -
151                   type: vlan
152                   device: bond1
153                   vlan_id: {get_param: TenantNetworkVlanID}
154                   addresses:
155                     -
156                       ip_netmask: {get_param: TenantIpSubnet}
157                 # Uncomment when including environments/network-management.yaml
158                 # If setting default route on the Management interface, comment
159                 # out the default route on the Control Plane.
160                 #-
161                 #  type: vlan
162                 #  device: bond1
163                 #  vlan_id: {get_param: ManagementNetworkVlanID}
164                 #  addresses:
165                 #    -
166                 #      ip_netmask: {get_param: ManagementIpSubnet}
167                 #  routes:
168                 #    -
169                 #      default: true
170                 #      next_hop: {get_param: ManagementInterfaceDefaultRoute}
171
172 outputs:
173   OS::stack_id:
174     description: The OsNetConfigImpl resource.
175     value: {get_resource: OsNetConfigImpl}