-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller_node.template.yaml
More file actions
249 lines (220 loc) · 7.17 KB
/
controller_node.template.yaml
File metadata and controls
249 lines (220 loc) · 7.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
## Author: Jeffrey Guan
## Name: controller_node.template.yaml
## Date: 2016-08-15
## Note: create controller node.
## Version: Kilo
heat_template_version: '2015-04-30'
description: Controller server
parameters:
name:
type: string
default: "ctrl_volume"
indx:
type: string
default: " "
br-mgmt_net_mask:
type: string
default: " "
br-mgmt_default_gw:
type: string
default: " "
image:
type: string
default: "cirrors"
flavor:
type: string
default: m1.small
volumeSize:
type: string
description: size of the cinder volume used for database
default: 1
private_network:
type: json
description:
floating_network_id:
type: string
default: " "
br-fw-admin_ipaddress:
type: string
br-storage_ipaddress:
type: string
br-mesh_ipaddress:
type: string
net04-ext_ipaddress1:
type: string
net04-ext_ipaddress2:
type: string
net04-ext_ipaddress3:
type: string
net04-ext_mac_addr_ip2:
type: string
net04-ext_mac_addr_ip3:
type: string
br-mgmt_ipaddress1:
type: string
br-mgmt_ipaddress2:
type: string
br-mgmt_ipaddress3:
type: string
br-mgmt_mac_addr_ip2:
type: string
br-mgmt_mac_addr_ip3:
type: string
ceph_fixed_ip:
type: string
security_group:
type: json
cpu_count:
type: number
resources:
## start of controller node definitions
################################################################
# Begin: Create Port #
################################################################
# Creat a new port.
ETH0-br-fw-admin:
type: OS::Neutron::Port
properties:
name:
str_replace:
template: $INDX-eth0
params:
$INDX: { get_param: indx }
network: { get_param: [private_network, br-fw-admin, network] }
security_groups:
- { get_param: [security_group, sec_group] }
fixed_ips:
- ip_address: { get_param: br-fw-admin_ipaddress }
# Creat a new port.
ETH1-br-storage:
type: OS::Neutron::Port
properties:
name:
str_replace:
template: $INDX-eth1
params:
$INDX: { get_param: indx }
network: { get_param: [private_network, br-storage, network] }
security_groups:
- { get_param: [security_group, sec_group] }
fixed_ips:
- ip_address: { get_param: br-storage_ipaddress }
# Creat a new port.
ETH2-net04-ext:
type: OS::Neutron::Port
properties:
name:
str_replace:
template: $INDX-eth2
params:
$INDX: { get_param: indx }
network: { get_param: [private_network, net04_ext, network] }
security_groups:
- { get_param: [security_group, sec_group] }
# These three IPs are binded to the same port.
# net04-ext_ipaddress2: b_public ip address in haproxy namespace;
# net04-ext_ipaddress3: v_vrouter_pub ip address in vrouter namespace;
# net04-ext_ipaddress1: br-ex ip address.
# The MAC address for net04-ext_ipaddress2 and net04-ext_ipaddress3 will always change
# in case of reboot, Please DO hard-code these MACs in the shell script.
allowed_address_pairs: [
{ "mac_address": { get_param: net04-ext_mac_addr_ip2 }, "ip_address": {get_param: net04-ext_ipaddress2 }},
{ "mac_address": { get_param: net04-ext_mac_addr_ip3 }, "ip_address": {get_param: net04-ext_ipaddress3 }},
{ "ip_address": {get_param: net04-ext_ipaddress1 }}
]
# Two fixed ips are binded to this port.
# The net04-ext_ipaddress2 is for front-end;
# The net04-ext_ipaddress1 is for back-end.
# Both of them will be associated with floating ips.
fixed_ips:
-
subnet: { get_param: [private_network, net04_ext, subnet] }
ip_address: { get_param: net04-ext_ipaddress1 }
-
subnet: { get_param: [private_network, net04_ext, subnet] }
ip_address: { get_param: net04-ext_ipaddress2 }
# Creat a new port.
ETH3-br-mgmt:
type: OS::Neutron::Port
properties:
name:
str_replace:
template: $INDX-eth3
params:
$INDX: { get_param: indx }
network: { get_param: [private_network, br-mgmt, network] }
security_groups:
- { get_param: [security_group, sec_group] }
# br-mgmt_ipaddress2: b_management's ip address in haproxy namespace;
# br-mgmt_ipaddress3: b_vrouter's ip address in vrouter namespace;
# br-mgmt_ipaddress1: br-mgmt's ip address.
allowed_address_pairs: [
{ "mac_address": { get_param: br-mgmt_mac_addr_ip2 }, "ip_address": {get_param: br-mgmt_ipaddress2 }},
{ "mac_address": { get_param: br-mgmt_mac_addr_ip3 }, "ip_address": {get_param: br-mgmt_ipaddress3 }},
{ "ip_address": {get_param: br-mgmt_ipaddress1 }}
]
fixed_ips:
- ip_address: { get_param: br-mgmt_ipaddress1 }
# Creat a new port.
ETH4-br-mesh:
type: OS::Neutron::Port
properties:
name:
str_replace:
template: $INDX-eth4
params:
$INDX: { get_param: indx }
network: { get_param: [private_network, br-mesh, network] }
security_groups:
- { get_param: [security_group, sec_group] }
fixed_ips:
- ip_address: { get_param: br-mesh_ipaddress }
################################################################
# End: Create Port #
################################################################
# Create controller node.
ctrl_node:
type: OS::Nova::Server
# depends_on: ctrlVolume
properties:
name:
str_replace:
template: $SERVER_NAME
params:
$SERVER_NAME: { get_param: name }
flavor: { get_param: flavor }
config_drive: True
image: { get_param: image }
user_data_format: RAW
user_data:
str_replace:
template: { get_file: userdata_controller_node.sh }
params:
$DEFAULT_GATEWAY: { get_param: br-mgmt_default_gw }
$NET_MASK: { get_param: br-mgmt_net_mask }
$CEPH_FIXED_IP: { get_param: ceph_fixed_ip }
$CPU_COUNT: { get_param: cpu_count }
networks:
- port: { get_resource: ETH0-br-fw-admin }
- port: { get_resource: ETH1-br-storage }
- port: { get_resource: ETH2-net04-ext }
- port: { get_resource: ETH3-br-mgmt }
- port: { get_resource: ETH4-br-mesh }
# block_device_mapping:
# - { volume_id: { get_resource: ctrlVolume}, device_name: vdb, delete_on_termination: 'true' }
# Create volume for controller node.
# ctrlVolume:
# type: OS::Cinder::Volume
# properties:
# name:
# str_replace:
# template: $name:vdb
# params:
# $name: { get_param: name }
# size: { get_param: volumeSize }
# ctrlVolumeAttach:
# type: OS::Cinder::VolumeAttachment
# properties:
# instance_uuid: { get_resource: ctrl_node }
# volume_id: { get_resource: ctrlVolume }
## end of node controller node definitions