Align template defaults with the client
[apex-tripleo-heat-templates.git] / network / config / bond-with-vlans / ceph-storage.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 ceph storage 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   BondInterfaceOvsOptions:
33     default: ''
34     description: The ovs_options string for the bond interface. Set things like
35                  lacp=active and/or bond_mode=balance-slb using this option.
36     type: string
37   StorageNetworkVlanID:
38     default: 30
39     description: Vlan ID for the storage network traffic.
40     type: number
41   StorageMgmtNetworkVlanID:
42     default: 40
43     description: Vlan ID for the storage mgmt network traffic.
44     type: number
45   ControlPlaneSubnetCidr: # Override this via parameter_defaults
46     default: '24'
47     description: The subnet CIDR of the control plane network.
48     type: string
49   ControlPlaneDefaultRoute: # Override this via parameter_defaults
50     description: The default route of the control plane network.
51     type: string
52   DnsServers: # Override this via parameter_defaults
53     default: []
54     description: A list of DNS servers (2 max for some implementations) that will be added to resolv.conf.
55     type: comma_delimited_list
56   EC2MetadataIp: # Override this via parameter_defaults
57     description: The IP address of the EC2 metadata server.
58     type: string
59
60 resources:
61   OsNetConfigImpl:
62     type: OS::Heat::StructuredConfig
63     properties:
64       group: os-apply-config
65       config:
66         os_net_config:
67           network_config:
68             -
69               type: interface
70               name: nic1
71               use_dhcp: false
72               dns_servers: {get_param: DnsServers}
73               addresses:
74                 -
75                   ip_netmask:
76                     list_join:
77                       - '/'
78                       - - {get_param: ControlPlaneIp}
79                         - {get_param: ControlPlaneSubnetCidr}
80               routes:
81                 -
82                   ip_netmask: 169.254.169.254/32
83                   next_hop: {get_param: EC2MetadataIp}
84                 -
85                   default: true
86                   next_hop: {get_param: ControlPlaneDefaultRoute}
87             -
88               type: ovs_bridge
89               name: br-bond
90               members:
91                 -
92                   type: ovs_bond
93                   name: bond1
94                   ovs_options: {get_param: BondInterfaceOvsOptions}
95                   members:
96                     -
97                       type: interface
98                       name: nic2
99                       primary: true
100                     -
101                       type: interface
102                       name: nic3
103                 -
104                   type: vlan
105                   device: bond1
106                   vlan_id: {get_param: StorageNetworkVlanID}
107                   addresses:
108                     -
109                       ip_netmask: {get_param: StorageIpSubnet}
110                 -
111                   type: vlan
112                   device: bond1
113                   vlan_id: {get_param: StorageMgmtNetworkVlanID}
114                   addresses:
115                     -
116                       ip_netmask: {get_param: StorageMgmtIpSubnet}
117
118 outputs:
119   OS::stack_id:
120     description: The OsNetConfigImpl resource.
121     value: {get_resource: OsNetConfigImpl}