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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
heat_template_version: 2013-05-23
description: >
HOT template to create a new neutron network plus a router to the public
network, and for deploying nine servers into the new network. The template also
assigns floating IP addresses to rubbos_control server so it is routable from the
public network.
parameters:
key_name:
type: string
description: Name of keypair to assign to servers
default: bottlenecks-key
image:
type: string
description: Name of image to use for servers
default: bottlenecks-trusty-server
flavor:
type: string
description: Flavor to use for servers
default: bottlenecks-flavor
public_net:
type: string
description: >
ID or name of public network for which floating IP addresses will be allocated
default: net04_ext
private_net_name:
type: string
description: Name of private network to be created
default: bottlenecks-private
private_net_cidr:
type: string
description: Private network address (CIDR notation)
default: "10.0.10.0/24"
private_net_gateway:
type: string
description: Private network gateway address
default: "10.0.10.1"
private_net_pool_start:
type: string
description: Start of private network IP address allocation pool
default: "10.0.10.2"
private_net_pool_end:
type: string
description: End of private network IP address allocation pool
default: "10.0.10.199"
resources:
private_net:
type: OS::Neutron::Net
properties:
name: { get_param: private_net_name }
private_subnet:
type: OS::Neutron::Subnet
properties:
network_id: { get_resource: private_net }
cidr: { get_param: private_net_cidr }
gateway_ip: { get_param: private_net_gateway }
allocation_pools:
- start: { get_param: private_net_pool_start }
end: { get_param: private_net_pool_end }
router:
type: OS::Neutron::Router
properties:
external_gateway_info:
network: { get_param: public_net }
router_interface:
type: OS::Neutron::RouterInterface
properties:
router_id: { get_resource: router }
subnet_id: { get_resource: private_subnet }
rubbos_control:
type: OS::Nova::Server
properties:
name: rubbos_control
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_control_port }
rubbos_control_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_control_floating_ip:
type: OS::Neutron::FloatingIP
properties:
floating_network: { get_param: public_net }
port_id: { get_resource: rubbos_control_port }
rubbos_httpd:
type: OS::Nova::Server
properties:
name: rubbos_httpd
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_httpd_port }
rubbos_httpd_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_mysql1:
type: OS::Nova::Server
properties:
name: rubbos_mysql1
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_mysql1_port }
rubbos_mysql1_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_tomcat1:
type: OS::Nova::Server
properties:
name: rubbos_tomcat1
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_tomcat1_port }
rubbos_tomcat1_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_client1:
type: OS::Nova::Server
properties:
name: rubbos_client1
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_client1_port }
rubbos_client1_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_client2:
type: OS::Nova::Server
properties:
name: rubbos_client2
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_client2_port }
rubbos_client2_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_client3:
type: OS::Nova::Server
properties:
name: rubbos_client3
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_client3_port }
rubbos_client3_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_client4:
type: OS::Nova::Server
properties:
name: rubbos_client4
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_client4_port }
rubbos_client4_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
rubbos_benchmark:
type: OS::Nova::Server
properties:
name: rubbos_benchmark
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: rubbos_benchmark_port }
rubbos_benchmark_port:
type: OS::Neutron::Port
properties:
network_id: { get_resource: private_net }
fixed_ips:
- subnet_id: { get_resource: private_subnet }
security_groups: [{ get_resource: server_security_group }]
server_security_group:
type: OS::Neutron::SecurityGroup
properties:
description: Rubbos group for servers access.
name: rubbos-security-group
rules: [
{remote_ip_prefix: 0.0.0.0/0,
protocol: tcp,
port_range_min: 1,
port_range_max: 65535},
{remote_ip_prefix: 0.0.0.0/0,
protocol: udp,
port_range_min: 1,
port_range_max: 65535},
{remote_ip_prefix: 0.0.0.0/0,
protocol: icmp}]
outputs:
rubbos_control_private_ip:
description: IP address of rubbos_control in private network
value: { get_attr: [ rubbos_control, first_address ] }
rubbos_control_public_ip:
description: Floating IP address of rubbos_control in public network
value: { get_attr: [ rubbos_control_floating_ip, floating_ip_address ] }
rubbos_httpd_private_ip:
description: IP address of rubbos_httpd in private network
value: { get_attr: [ rubbos_httpd, first_address ] }
rubbos_mysql1_private_ip:
description: IP address of rubbos_mysql1 in private network
value: { get_attr: [ rubbos_mysql1, first_address ] }
rubbos_tomcat1_private_ip:
description: IP address of rubbos_tomcat1 in private network
value: { get_attr: [ rubbos_tomcat1, first_address ] }
rubbos_client1_private_ip:
description: IP address of rubbos_client1 in private network
value: { get_attr: [ rubbos_client1, first_address ] }
rubbos_client2_private_ip:
description: IP address of rubbos_client2 in private network
value: { get_attr: [ rubbos_client2, first_address ] }
rubbos_client3_private_ip:
description: IP address of rubbos_client3 in private network
value: { get_attr: [ rubbos_client3, first_address ] }
rubbos_client4_private_ip:
description: IP address of rubbos_client4 in private network
value: { get_attr: [ rubbos_client4, first_address ] }
rubbos_benchmark_private_ip:
description: IP address of rubbos_benchmark in private network
value: { get_attr: [ rubbos_benchmark, first_address ] }
|