87e397c794043789d3da0e10126b5bb4f3a758c9
[demo.git] / heat / vLB / base_vlb.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4
5 #
6 # Copyright (c) 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 to deploy vLoadBalancer/vDNS demo app for ONAP
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36   vlb_image_name:
37     type: string
38     label: Image name or ID
39     description: Image to be used for compute instance
40   vlb_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   vlb_private_net_id:
49     type: string
50     label: vLoadBalancer private network name or ID
51     description: Private network that connects vLoadBalancer with vDNSs
52   pktgen_private_net_id:
53     type: string
54     label: vPacketGen private network name or ID
55     description: Private network that connects vLoadBalancer with vPacketGen
56   onap_private_net_id:
57     type: string
58     label: ONAP management network name or ID
59     description: Private network that connects ONAP component 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 component and the VNF
64   vlb_private_net_cidr:
65     type: string
66     label: vLoadBalancer private network CIDR
67     description: The CIDR of the vLoadBalancer private network
68   pktgen_private_net_cidr:
69     type: string
70     label: vPacketGen private network CIDR
71     description: The CIDR of the vPacketGen 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   vlb_private_ip_0:
77     type: string
78     label: vLoadBalancer private IP address towards the private network
79     description: Private IP address that is assigned to the vLoadBalancer to communicate with the vDNSs
80   vlb_private_ip_1:
81     type: string
82     label: vLoadBalancer private IP address towards the ONAP management network
83     description: Private IP address that is assigned to the vLoadBalancer to communicate with ONAP components
84   vlb_private_ip_2:
85     type: string
86     label: vLoadBalancer private IP address towards the vPacketGen network
87     description: Private IP address that is assigned to the vLoadBalancer to communicate with vPacketGen
88   vdns_private_ip_0:
89     type: string
90     label: vDNS private IP address towards the private network
91     description: Private IP address that is assigned to the vDNS to communicate with the vLoadBalancer
92   vdns_private_ip_1:
93     type: string
94     label: vDNS private IP address towards the ONAP management network
95     description: Private IP address that is assigned to the vDNS to communicate with ONAP components
96   vpg_private_ip_0:
97     type: string
98     label: vPacketGen private IP address towards the vPacketGen private network
99     description: Private IP address that is assigned to the vPacketGen to communicate with the vLoadBalancer
100   vpg_private_ip_1:
101     type: string
102     label: vPacketGen private IP address towards the ONAP management network
103     description: Private IP address that is assigned to the vPacketGen to communicate with ONAP components
104   vip:
105     type: string
106     label: Virtual Private IP of the vLoadBalancer
107     description: Virtual Private IP that is assigned to the vLoadBalancer's VPP layer
108   gre_ipaddr:
109     type: string
110     label: IP Address of the GRE tunnel
111     description: IP address assigned to the GRE tunnel on the vLoadBalancer
112   pg_int:
113     type: string
114     label: IP Address of the output vPacketGen interface
115     description: IP address assigned to the output interface of the vPacketGen's VPP layer
116   vlb_name_0:
117     type: string
118     label: vLoadBalancer name
119     description: Name of the vLoadBalancer
120   vdns_name_0:
121     type: string
122     label: vDNS name
123     description: Name of the vDNS
124   vpg_name_0:
125     type: string
126     label: vPKTGEN name
127     description: Name of the vPKTGEN
128   vnf_id:
129     type: string
130     label: VNF ID
131     description: The VNF ID is provided by ONAP
132   vf_module_id:
133     type: string
134     label: vFirewall module ID
135     description: The vLoadBalancer Module ID is provided by ONAP
136   dcae_collector_ip:
137     type: string
138     label: DCAE collector IP address
139     description: IP address of the DCAE collector
140   dcae_collector_port:
141     type: string
142     label: DCAE collector port
143     description: Port of the DCAE collector
144   key_name:
145     type: string
146     label: Key pair name
147     description: Public/Private key pair name
148   pub_key:
149     type: string
150     label: Public key
151     description: Public key to be installed on the compute instance
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   nexus_artifact_repo:
157     type: string
158     description: Root URL for the Nexus repository for Maven artifacts.
159     default: "https://nexus.onap.org"
160   install_script_version:
161     type: string
162     label: Installation script version number
163     description: Version number of the scripts that install the vFW demo app
164   cloud_env:
165     type: string
166     label: Cloud environment
167     description: Cloud environment (e.g., openstack, rackspace)
168   sec_group:
169     type: string
170     description: ONAP Security Group
171
172
173 #############
174 #           #
175 # RESOURCES #
176 #           #
177 #############
178
179 resources:
180
181   random-str:
182     type: OS::Heat::RandomString
183     properties:
184       length: 4
185
186   my_keypair:
187     type: OS::Nova::KeyPair
188     properties:
189       name: 
190         str_replace:
191           template: base_rand
192           params:
193             base: { get_param: key_name }
194             rand: { get_resource: random-str }  
195       public_key: { get_param: pub_key }
196       save_private_key: false
197
198   vlb_private_network:
199     type: OS::Neutron::Net
200     properties:
201       name: { get_param: vlb_private_net_id }
202
203   vlb_private_subnet:
204     type: OS::Neutron::Subnet
205     properties:
206       name: { get_param: vlb_private_net_id }
207       network_id: { get_resource: vlb_private_network }
208       cidr: { get_param: vlb_private_net_cidr }
209
210   pktgen_private_network:
211     type: OS::Neutron::Net
212     properties:
213       name: { get_param: pktgen_private_net_id }
214
215   pktgen_private_subnet:
216     type: OS::Neutron::Subnet
217     properties:
218       name: { get_param: pktgen_private_net_id }
219       network_id: { get_resource: pktgen_private_network }
220       cidr: { get_param: pktgen_private_net_cidr }
221
222   vlb_private_0_port:
223     type: OS::Neutron::Port
224     properties:
225       network: { get_resource: vlb_private_network }
226       fixed_ips: [{"subnet": { get_resource: vlb_private_subnet }, "ip_address": { get_param: vlb_private_ip_0 }}]
227       security_groups:
228       - { get_param: sec_group }
229
230
231   vlb_private_1_port:
232     type: OS::Neutron::Port
233     properties:
234       network: { get_param: onap_private_net_id }
235       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vlb_private_ip_1 }}]
236       security_groups:
237       - { get_param: sec_group }
238
239   vlb_private_2_port:
240     type: OS::Neutron::Port
241     properties:
242       network: { get_resource: pktgen_private_network }
243       fixed_ips: [{"subnet": { get_resource: pktgen_private_subnet }, "ip_address": { get_param: vlb_private_ip_2 }}]
244       security_groups:
245       - { get_param: sec_group }
246
247   vlb_0:
248     type: OS::Nova::Server
249     properties:
250       image: { get_param: vlb_image_name }
251       flavor: { get_param: vlb_flavor_name }
252       name: { get_param: vlb_name_0 }
253       key_name: { get_resource: my_keypair }
254       networks:
255         - network: { get_param: public_net_id }
256         - port: { get_resource: vlb_private_0_port }
257         - port: { get_resource: vlb_private_1_port }
258         - port: { get_resource: vlb_private_2_port }
259       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
260       user_data_format: RAW
261       user_data:
262         str_replace:
263           params:
264             __dcae_collector_ip__: { get_param: dcae_collector_ip }
265             __dcae_collector_port__: { get_param: dcae_collector_port }
266             __ip_to_dns_net__: { get_param: vlb_private_ip_0 }
267             __ip_to_pktgen_net__: { get_param: vlb_private_ip_2 }
268             __vip__: { get_param: vip }
269             __gre_ipaddr__: { get_param: gre_ipaddr }
270             __pktgen_ipaddr__: { get_param: vpg_private_ip_0 }
271             __oam_private_ipaddr__: { get_param: vlb_private_ip_1 }
272             __demo_artifacts_version__: { get_param: demo_artifacts_version }
273             __install_script_version__: { get_param: install_script_version }
274             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
275             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
276             __pktgen_private_net_cidr__: { get_param: pktgen_private_net_cidr }
277             __pktgen_mac__: { get_attr: [vpg_private_0_port, mac_address] }
278             __cloud_env__: { get_param: cloud_env }
279             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
280           template: |
281             #!/bin/bash
282
283             # Create configuration files
284             mkdir /opt/config
285             echo "__dcae_collector_ip__" > /opt/config/dcae_collector_ip.txt
286             echo "__dcae_collector_port__" > /opt/config/dcae_collector_port.txt
287             echo "__ip_to_dns_net__" > /opt/config/ip_to_dns_net.txt
288             echo "__ip_to_pktgen_net__" > /opt/config/ip_to_pktgen_net.txt
289             echo "__vip__" > /opt/config/vip.txt
290             echo "__gre_ipaddr__" > /opt/config/gre_ipaddr.txt
291             echo "__pktgen_ipaddr__" > /opt/config/pktgen_ipaddr.txt
292             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
293             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
294             echo "__install_script_version__" > /opt/config/install_script_version.txt
295             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
296             echo "__pktgen_private_net_cidr__" > /opt/config/pktgen_private_net_cidr.txt
297             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
298             echo "__pktgen_mac__" > /opt/config/pktgen_mac.txt
299             echo "__cloud_env__" > /opt/config/cloud_env.txt
300             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
301
302             # Download and run install script
303             apt-get update
304             apt-get -y install unzip
305             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
306             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlb&a=vlb-scripts&e=zip&v=__install_script_version__" -o /opt/vlb-scripts-__install_script_version__.zip
307             unzip -j /opt/vlb-scripts-__install_script_version__.zip -d /opt v_lb_install.sh
308             cd /opt
309             chmod +x v_lb_install.sh
310             ./v_lb_install.sh
311
312
313   vdns_private_0_port:
314     type: OS::Neutron::Port
315     properties:
316       network: { get_resource: vlb_private_network }
317       fixed_ips: [{"subnet": { get_resource: vlb_private_subnet }, "ip_address": { get_param: vdns_private_ip_0 }}]
318       security_groups:
319       - { get_param: sec_group }
320
321   vdns_private_1_port:
322     type: OS::Neutron::Port
323     properties:
324       network: { get_param: onap_private_net_id }
325       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_private_ip_1 }}]
326       security_groups:
327       - { get_param: sec_group }
328
329
330   vdns_0:
331     type: OS::Nova::Server
332     properties:
333       image: { get_param: vlb_image_name }
334       flavor: { get_param: vlb_flavor_name }
335       name: { get_param: vdns_name_0 }
336       key_name: { get_resource: my_keypair }
337       networks:
338         - network: { get_param: public_net_id }
339         - port: { get_resource: vdns_private_0_port }
340         - port: { get_resource: vdns_private_1_port }
341       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
342       user_data_format: RAW
343       user_data:
344         str_replace:
345           params:
346             __lb_oam_int__: { get_param: vlb_private_ip_1 }
347             __lb_private_ipaddr__: { get_param: vlb_private_ip_0 }
348             __local_private_ipaddr__: { get_param: vdns_private_ip_0 }
349             __oam_private_ipaddr__: { get_param: vdns_private_ip_1 }
350             __demo_artifacts_version__: { get_param: demo_artifacts_version }
351             __install_script_version__: { get_param: install_script_version }
352             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
353             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
354             __cloud_env__: { get_param: cloud_env }
355             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
356           template: |
357             #!/bin/bash
358
359             # Create configuration files
360             mkdir /opt/config
361             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
362             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
363             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
364             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
365             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
366             echo "__install_script_version__" > /opt/config/install_script_version.txt
367             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
368             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
369             echo "__cloud_env__" > /opt/config/cloud_env.txt
370             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
371
372             # Download and run install script
373             apt-get update
374             apt-get -y install unzip
375             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
376             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlb&a=vlb-scripts&e=zip&v=__install_script_version__" -o /opt/vlb-scripts-__install_script_version__.zip
377             unzip -j /opt/vlb-scripts-__install_script_version__.zip -d /opt v_dns_install.sh
378             cd /opt
379             chmod +x v_dns_install.sh
380             ./v_dns_install.sh
381
382
383   vpg_private_0_port:
384     type: OS::Neutron::Port
385     properties:
386       network: { get_resource: pktgen_private_network }
387       fixed_ips: [{"subnet": { get_resource: pktgen_private_subnet }, "ip_address": { get_param: vpg_private_ip_0 }}]
388       security_groups:
389       - { get_param: sec_group }
390
391   vpg_private_1_port:
392     type: OS::Neutron::Port
393     properties:
394       network: { get_param: onap_private_net_id }
395       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vpg_private_ip_1 }}]
396       security_groups:
397       - { get_param: sec_group }
398
399   vpg_0:
400     type: OS::Nova::Server
401     properties:
402       image: { get_param: vlb_image_name }
403       flavor: { get_param: vlb_flavor_name }
404       name: { get_param: vpg_name_0 }
405       key_name: { get_resource: my_keypair }
406       networks:
407         - network: { get_param: public_net_id }
408         - port: { get_resource: vpg_private_0_port }
409         - port: { get_resource: vpg_private_1_port }
410       user_data_format: RAW
411       user_data:
412         str_replace:
413           params:
414             __local_private_ipaddr__: { get_param: vpg_private_ip_0 }
415             __oam_private_ipaddr__: { get_param: vpg_private_ip_1 }
416             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
417             __pktgen_private_net_cidr__: { get_param: pktgen_private_net_cidr }
418             __vlb_ipaddr__: { get_param: vlb_private_ip_2 }
419             __demo_artifacts_version__: { get_param: demo_artifacts_version }
420             __install_script_version__: { get_param: install_script_version }
421             __pg_int__: { get_param: pg_int }
422             __vlb_mac__: { get_attr: [vlb_private_2_port, mac_address] }
423             __cloud_env__: { get_param: cloud_env }
424             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
425           template: |
426             #!/bin/bash
427
428             # Create configuration files
429             mkdir /opt/config
430             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
431             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
432             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
433             echo "__pktgen_private_net_cidr__" > /opt/config/pktgen_private_net_cidr.txt
434             echo "__vlb_ipaddr__" > /opt/config/vlb_ipaddr.txt
435             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
436             echo "__install_script_version__" > /opt/config/install_script_version.txt
437             echo "__pg_int__" > /opt/config/pg_int.txt
438             echo "__vlb_mac__" > /opt/config/vlb_mac.txt
439             echo "__cloud_env__" > /opt/config/cloud_env.txt
440             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
441
442             # Download and run install script
443             apt-get update
444             apt-get -y install unzip
445             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
446             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlb&a=vlb-scripts&e=zip&v=__install_script_version__" -o /opt/vlb-scripts-__install_script_version__.zip
447             unzip -j /opt/vlb-scripts-__install_script_version__.zip -d /opt v_packetgen_install.sh
448             cd /opt
449             chmod +x v_packetgen_install.sh
450             ./v_packetgen_install.sh