Merge "Add dns list for demo vagrant"
[demo.git] / heat / vFW / base_vfw_rackspace.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4
5 #
6 # Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #        http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #==================LICENSE_END============================================
20 #
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 #
23 ##########################################################################
24
25 heat_template_version: 2013-05-23
26
27 description: Heat template that deploys vFirewall demo app for ONAP
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36   vfw_image_name:
37     type: string
38     label: Image name or ID
39     description: Image to be used for compute instance
40   vfw_flavor_name:
41     type: string
42     label: Flavor
43     description: Type of instance (flavor) to be used
44   public_net_id:
45     type: string
46     label: Public network name or ID
47     description: Public network that enables remote connection to VNF
48   unprotected_private_net_id:
49     type: string
50     label: Unprotected private network name or ID
51     description: Private network that connects vPacketGenerator with vFirewall
52   protected_private_net_id:
53     type: string
54     label: Protected private network name or ID
55     description: Private network that connects vFirewall with vSink
56   onap_private_net_id:
57     type: string
58     label: ONAP management network name or ID
59     description: Private network that connects ONAP components and the VNF
60   onap_private_subnet_id:
61     type: string
62     label: ONAP management sub-network name or ID
63     description: Private sub-network that connects ONAP components and the VNF
64   unprotected_private_net_cidr:
65     type: string
66     label: Unprotected private network CIDR
67     description: The CIDR of the unprotected private network
68   protected_private_net_cidr:
69     type: string
70     label: Protected private network CIDR
71     description: The CIDR of the protected private network
72   onap_private_net_cidr:
73     type: string
74     label: ONAP private network CIDR
75     description: The CIDR of the protected private network
76   vfw_private_ip_0:
77     type: string
78     label: vFirewall private IP address towards the unprotected network
79     description: Private IP address that is assigned to the vFirewall to communicate with the vPacketGenerator
80   vfw_private_ip_1:
81     type: string
82     label: vFirewall private IP address towards the protected network
83     description: Private IP address that is assigned to the vFirewall to communicate with the vSink
84   vfw_private_ip_2:
85     type: string
86     label: vFirewall private IP address towards the ONAP management network
87     description: Private IP address that is assigned to the vFirewall to communicate with ONAP components
88   vpg_private_ip_0:
89     type: string
90     label: vPacketGenerator private IP address towards the unprotected network
91     description: Private IP address that is assigned to the vPacketGenerator to communicate with the vFirewall
92   vpg_private_ip_1:
93     type: string
94     label: vPacketGenerator private IP address towards the ONAP management network
95     description: Private IP address that is assigned to the vPacketGenerator to communicate with ONAP components
96   vsn_private_ip_0:
97     type: string
98     label: vSink private IP address towards the protected network
99     description: Private IP address that is assigned to the vSink to communicate with the vFirewall
100   vsn_private_ip_1:
101     type: string
102     label: vSink private IP address towards the ONAP management network
103     description: Private IP address that is assigned to the vSink to communicate with ONAP components
104   vfw_name_0:
105     type: string
106     label: vFirewall name
107     description: Name of the vFirewall
108   vpg_name_0:
109     type: string
110     label: vPacketGenerator name
111     description: Name of the vPacketGenerator
112   vsn_name_0:
113     type: string
114     label: vSink name
115     description: Name of the vSink
116   vnf_id:
117     type: string
118     label: VNF ID
119     description: The VNF ID is provided by ECOMP
120   vf_module_id:
121     type: string
122     label: vFirewall module ID
123     description: The vFirewall Module ID is provided by ECOMP
124   dcae_collector_ip:
125     type: string
126     label: DCAE collector IP address
127     description: IP address of the DCAE collector
128   dcae_collector_port:
129     type: string
130     label: DCAE collector port
131     description: Port of the DCAE collector
132   key_name:
133     type: string
134     label: Key pair name
135     description: Public/Private key pair name
136   pub_key:
137     type: string
138     label: Public key
139     description: Public key to be installed on the compute instance
140   repo_url_blob:
141     type: string
142     label: Repository URL
143     description: URL of the repository that hosts the demo packages
144   repo_url_artifacts:
145     type: string
146     label: Repository URL
147     description: URL of the repository that hosts the demo packages
148   install_script_version:
149     type: string
150     label: Installation script version number
151     description: Version number of the scripts that install the vFW demo app
152   demo_artifacts_version:
153     type: string
154     label: Artifacts version used in demo vnfs
155     description: Artifacts (jar, tar.gz) version used in demo vnfs
156   cloud_env:
157     type: string
158     label: Cloud environment
159     description: Cloud environment (e.g., openstack, rackspace)
160
161 #############
162 #           #
163 # RESOURCES #
164 #           #
165 #############
166
167 resources:
168   random-str:
169     type: OS::Heat::RandomString
170     properties:
171       length: 4
172
173   my_keypair:
174     type: OS::Nova::KeyPair
175     properties:
176       name:
177         str_replace:
178           template: base_rand
179           params:
180             base: { get_param: key_name }
181             rand: { get_resource: random-str }
182       public_key: { get_param: pub_key }
183       save_private_key: false
184
185   unprotected_private_network:
186     type: OS::Neutron::Net
187     properties:
188       name: { get_param: unprotected_private_net_id }
189
190   protected_private_network:
191     type: OS::Neutron::Net
192     properties:
193       name: { get_param: protected_private_net_id }
194
195   unprotected_private_subnet:
196     type: OS::Neutron::Subnet
197     properties:
198       network_id: { get_resource: unprotected_private_network }
199       cidr: { get_param: unprotected_private_net_cidr }
200
201   protected_private_subnet:
202     type: OS::Neutron::Subnet
203     properties:
204       network_id: { get_resource: protected_private_network }
205       cidr: { get_param: protected_private_net_cidr }
206
207   # Virtual Firewall instantiation
208   vfw_private_0_port:
209     type: OS::Neutron::Port
210     properties:
211       network: { get_resource: unprotected_private_network }
212       fixed_ips: [{"subnet": { get_resource: unprotected_private_subnet }, "ip_address": { get_param: vfw_private_ip_0 }}]
213
214   vfw_private_1_port:
215     type: OS::Neutron::Port
216     properties:
217       network: { get_resource: protected_private_network }
218       fixed_ips: [{"subnet": { get_resource: protected_private_subnet }, "ip_address": { get_param: vfw_private_ip_1 }}]
219
220   vfw_private_2_port:
221     type: OS::Neutron::Port
222     properties:
223       network: { get_param: onap_private_net_id }
224       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vfw_private_ip_2 }}]
225
226   vfw_0:
227     type: OS::Nova::Server
228     properties:
229       image: { get_param: vfw_image_name }
230       flavor: { get_param: vfw_flavor_name }
231       name: { get_param: vfw_name_0 }
232       key_name: { get_resource: my_keypair }
233       networks:
234         - network: { get_param: public_net_id }
235         - port: { get_resource: vfw_private_0_port }
236         - port: { get_resource: vfw_private_1_port }
237         - port: { get_resource: vfw_private_2_port }
238       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
239       user_data_format: RAW
240       user_data:
241         str_replace:
242           params:
243             __dcae_collector_ip__ : { get_param: dcae_collector_ip }
244             __dcae_collector_port__ : { get_param: dcae_collector_port }
245             __repo_url_blob__ : { get_param: repo_url_blob }
246             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
247             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
248             __install_script_version__ : { get_param: install_script_version }
249             __cloud_env__ : { get_param: cloud_env }
250           template: |
251             #!/bin/bash
252
253             # Create configuration files
254             mkdir /opt/config
255             echo "__dcae_collector_ip__" > /opt/config/dcae_collector_ip.txt
256             echo "__dcae_collector_port__" > /opt/config/dcae_collector_port.txt
257             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
258             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
259             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
260             echo "__install_script_version__" > /opt/config/install_script_version.txt
261             echo "__cloud_env__" > /opt/config/cloud_env.txt
262             
263             # Download and run install script
264             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vfw/__install_script_version__/v_firewall_install.sh -o /opt/v_firewall_install.sh
265             cd /opt
266             chmod +x v_firewall_install.sh
267             ./v_firewall_install.sh
268
269
270   # Virtual Packet Generator instantiation
271   vpg_private_0_port:
272     type: OS::Neutron::Port
273     properties:
274       network: { get_resource: unprotected_private_network }
275       fixed_ips: [{"subnet": { get_resource: unprotected_private_subnet }, "ip_address": { get_param: vpg_private_ip_0 }}]
276
277   vpg_private_1_port:
278     type: OS::Neutron::Port
279     properties:
280       network: { get_param: onap_private_net_id }
281       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vpg_private_ip_1 }}]
282
283   vpg_0:
284     type: OS::Nova::Server
285     properties:
286       image: { get_param: vfw_image_name }
287       flavor: { get_param: vfw_flavor_name }
288       name: { get_param: vpg_name_0 }
289       key_name: { get_resource: my_keypair }
290       networks:
291         - network: { get_param: public_net_id }
292         - port: { get_resource: vpg_private_0_port }
293         - port: { get_resource: vpg_private_1_port }
294       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
295       user_data_format: RAW
296       user_data:
297         str_replace:
298           params:
299             __fw_ipaddr__: { get_param: vfw_private_ip_0 }
300             __protected_net_cidr__: { get_param: protected_private_net_cidr }
301             __sink_ipaddr__: { get_param: vsn_private_ip_0 }
302             __repo_url_blob__ : { get_param: repo_url_blob }
303             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
304             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
305             __install_script_version__ : { get_param: install_script_version }
306             __cloud_env__ : { get_param: cloud_env }
307           template: |
308             #!/bin/bash
309
310             # Create configuration files
311             mkdir /opt/config
312             echo "__fw_ipaddr__" > /opt/config/fw_ipaddr.txt
313             echo "__protected_net_cidr__" > /opt/config/protected_net_cidr.txt
314             echo "__sink_ipaddr__" > /opt/config/sink_ipaddr.txt
315             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
316             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
317             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
318             echo "__install_script_version__" > /opt/config/install_script_version.txt
319             echo "__cloud_env__" > /opt/config/cloud_env.txt
320             
321             # Download and run install script
322             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vfw/__install_script_version__/v_packetgen_install.sh -o /opt/v_packetgen_install.sh
323             cd /opt
324             chmod +x v_packetgen_install.sh
325             ./v_packetgen_install.sh
326
327
328   # Virtual Sink instantiation
329   vsn_private_0_port:
330     type: OS::Neutron::Port
331     properties:
332       network: { get_resource: protected_private_network }
333       fixed_ips: [{"subnet": { get_resource: protected_private_subnet }, "ip_address": { get_param: vsn_private_ip_0 }}]
334
335   vsn_private_1_port:
336     type: OS::Neutron::Port
337     properties:
338       network: { get_param: onap_private_net_id }
339       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vsn_private_ip_1 }}]
340
341   vsn_0:
342     type: OS::Nova::Server
343     properties:
344       image: { get_param: vfw_image_name }
345       flavor: { get_param: vfw_flavor_name }
346       name: { get_param: vsn_name_0 }
347       key_name: { get_resource: my_keypair }
348       networks:
349         - network: { get_param: public_net_id }
350         - port: { get_resource: vsn_private_0_port }
351         - port: { get_resource: vsn_private_1_port }
352       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
353       user_data_format: RAW
354       user_data:
355         str_replace:
356           params:
357             __protected_net_gw__: { get_param: vfw_private_ip_1 }
358             __unprotected_net__: { get_param: unprotected_private_net_cidr }
359             __repo_url_blob__ : { get_param: repo_url_blob }
360             __install_script_version__ : { get_param: install_script_version }
361             __cloud_env__ : { get_param: cloud_env }
362           template: |
363             #!/bin/bash
364
365             # Create configuration files
366             mkdir /opt/config
367             echo "__protected_net_gw__" > /opt/config/protected_net_gw.txt
368             echo "__unprotected_net__" > /opt/config/unprotected_net.txt
369             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
370             echo "__install_script_version__" > /opt/config/install_script_version.txt
371             echo "__cloud_env__" > /opt/config/cloud_env.txt
372             
373             # Download and run install script
374             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vfw/__install_script_version__/v_sink_install.sh -o /opt/v_sink_install.sh
375             cd /opt
376             chmod +x v_sink_install.sh
377             ./v_sink_install.sh