6ca2538bf6b815bef889d428dc76538a1a0a0e43
[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: ECOMP 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: ECOMP 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   repo_url_artifacts:
153     type: string
154     label: Repository URL
155     description: URL of the repository that hosts the demo packages
156   demo_artifacts_version:
157     type: string
158     label: Artifacts version used in demo vnfs
159     description: Artifacts (jar, tar.gz) version used in demo vnfs
160   nexus_artifact_repo:
161     type: string
162     description: Root URL for the Nexus repository for Maven artifacts.
163     default: "https://nexus.onap.org"
164   install_script_version:
165     type: string
166     label: Installation script version number
167     description: Version number of the scripts that install the vFW demo app
168   cloud_env:
169     type: string
170     label: Cloud environment
171     description: Cloud environment (e.g., openstack, rackspace)
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
228   vlb_private_1_port:
229     type: OS::Neutron::Port
230     properties:
231       network: { get_param: onap_private_net_id }
232       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vlb_private_ip_1 }}]
233
234   vlb_private_2_port:
235     type: OS::Neutron::Port
236     properties:
237       network: { get_resource: pktgen_private_network }
238       fixed_ips: [{"subnet": { get_resource: pktgen_private_subnet }, "ip_address": { get_param: vlb_private_ip_2 }}]
239
240   vlb_0:
241     type: OS::Nova::Server
242     properties:
243       image: { get_param: vlb_image_name }
244       flavor: { get_param: vlb_flavor_name }
245       name: { get_param: vlb_name_0 }
246       key_name: { get_resource: my_keypair }
247       networks:
248         - network: { get_param: public_net_id }
249         - port: { get_resource: vlb_private_0_port }
250         - port: { get_resource: vlb_private_1_port }
251         - port: { get_resource: vlb_private_2_port }
252       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
253       user_data_format: RAW
254       user_data:
255         str_replace:
256           params:
257             __dcae_collector_ip__: { get_param: dcae_collector_ip }
258             __dcae_collector_port__: { get_param: dcae_collector_port }
259             __ip_to_dns_net__: { get_param: vlb_private_ip_0 }
260             __ip_to_pktgen_net__: { get_param: vlb_private_ip_2 }
261             __vip__: { get_param: vip }
262             __gre_ipaddr__: { get_param: gre_ipaddr }
263             __pktgen_ipaddr__: { get_param: vpg_private_ip_0 }
264             __oam_private_ipaddr__: { get_param: vlb_private_ip_1 }
265             __repo_url_artifacts__: { get_param: repo_url_artifacts }
266             __demo_artifacts_version__: { get_param: demo_artifacts_version }
267             __install_script_version__: { get_param: install_script_version }
268             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
269             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
270             __pktgen_private_net_cidr__: { get_param: pktgen_private_net_cidr }
271             __pktgen_mac__: { get_attr: [vpg_private_0_port, mac_address] }
272             __cloud_env__: { get_param: cloud_env }
273             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
274           template: |
275             #!/bin/bash
276
277             # Create configuration files
278             mkdir /opt/config
279             echo "__dcae_collector_ip__" > /opt/config/dcae_collector_ip.txt
280             echo "__dcae_collector_port__" > /opt/config/dcae_collector_port.txt
281             echo "__ip_to_dns_net__" > /opt/config/ip_to_dns_net.txt
282             echo "__ip_to_pktgen_net__" > /opt/config/ip_to_pktgen_net.txt
283             echo "__vip__" > /opt/config/vip.txt
284             echo "__gre_ipaddr__" > /opt/config/gre_ipaddr.txt
285             echo "__pktgen_ipaddr__" > /opt/config/pktgen_ipaddr.txt
286             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
287             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
288             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
289             echo "__install_script_version__" > /opt/config/install_script_version.txt
290             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
291             echo "__pktgen_private_net_cidr__" > /opt/config/pktgen_private_net_cidr.txt
292             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
293             echo "__pktgen_mac__" > /opt/config/pktgen_mac.txt
294             echo "__cloud_env__" > /opt/config/cloud_env.txt
295             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
296
297             # Download and run install script
298             apt-get -y install unzip
299             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
300             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
301             unzip -j /opt/vlb-scripts-__install_script_version__.zip -d /opt v_lb_install.sh
302             cd /opt
303             chmod +x v_lb_install.sh
304             ./v_lb_install.sh
305
306
307   vdns_private_0_port:
308     type: OS::Neutron::Port
309     properties:
310       network: { get_resource: vlb_private_network }
311       fixed_ips: [{"subnet": { get_resource: vlb_private_subnet }, "ip_address": { get_param: vdns_private_ip_0 }}]
312
313   vdns_private_1_port:
314     type: OS::Neutron::Port
315     properties:
316       network: { get_param: onap_private_net_id }
317       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_private_ip_1 }}]
318
319   vdns_0:
320     type: OS::Nova::Server
321     properties:
322       image: { get_param: vlb_image_name }
323       flavor: { get_param: vlb_flavor_name }
324       name: { get_param: vdns_name_0 }
325       key_name: { get_resource: my_keypair }
326       networks:
327         - network: { get_param: public_net_id }
328         - port: { get_resource: vdns_private_0_port }
329         - port: { get_resource: vdns_private_1_port }
330       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
331       user_data_format: RAW
332       user_data:
333         str_replace:
334           params:
335             __lb_oam_int__: { get_param: vlb_private_ip_1 }
336             __lb_private_ipaddr__: { get_param: vlb_private_ip_0 }
337             __local_private_ipaddr__: { get_param: vdns_private_ip_0 }
338             __oam_private_ipaddr__: { get_param: vdns_private_ip_1 }
339             __repo_url_artifacts__: { get_param: repo_url_artifacts }
340             __demo_artifacts_version__: { get_param: demo_artifacts_version }
341             __install_script_version__: { get_param: install_script_version }
342             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
343             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
344             __cloud_env__: { get_param: cloud_env }
345             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
346           template: |
347             #!/bin/bash
348
349             # Create configuration files
350             mkdir /opt/config
351             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
352             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
353             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
354             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
355             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
356             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
357             echo "__install_script_version__" > /opt/config/install_script_version.txt
358             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
359             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
360             echo "__cloud_env__" > /opt/config/cloud_env.txt
361             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
362
363             # Download and run install script
364             apt-get -y install unzip
365             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
366             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
367             unzip -j /opt/vlb-scripts-__install_script_version__.zip -d /opt v_dns_install.sh
368             cd /opt
369             chmod +x v_dns_install.sh
370             ./v_dns_install.sh
371
372
373   vpg_private_0_port:
374     type: OS::Neutron::Port
375     properties:
376       network: { get_resource: pktgen_private_network }
377       fixed_ips: [{"subnet": { get_resource: pktgen_private_subnet }, "ip_address": { get_param: vpg_private_ip_0 }}]
378
379   vpg_private_1_port:
380     type: OS::Neutron::Port
381     properties:
382       network: { get_param: onap_private_net_id }
383       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vpg_private_ip_1 }}]
384
385   vpg_0:
386     type: OS::Nova::Server
387     properties:
388       image: { get_param: vlb_image_name }
389       flavor: { get_param: vlb_flavor_name }
390       name: { get_param: vpg_name_0 }
391       key_name: { get_resource: my_keypair }
392       networks:
393         - network: { get_param: public_net_id }
394         - port: { get_resource: vpg_private_0_port }
395         - port: { get_resource: vpg_private_1_port }
396       user_data_format: RAW
397       user_data:
398         str_replace:
399           params:
400             __repo_url_artifacts__: { get_param: repo_url_artifacts }
401             __local_private_ipaddr__: { get_param: vpg_private_ip_0 }
402             __oam_private_ipaddr__: { get_param: vpg_private_ip_1 }
403             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
404             __pktgen_private_net_cidr__: { get_param: pktgen_private_net_cidr }
405             __vlb_ipaddr__: { get_param: vlb_private_ip_2 }
406             __demo_artifacts_version__: { get_param: demo_artifacts_version }
407             __install_script_version__: { get_param: install_script_version }
408             __pg_int__: { get_param: pg_int }
409             __vlb_mac__: { get_attr: [vlb_private_2_port, mac_address] }
410             __cloud_env__: { get_param: cloud_env }
411             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
412           template: |
413             #!/bin/bash
414
415             # Create configuration files
416             mkdir /opt/config
417             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
418             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
419             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
420             echo "__pktgen_private_net_cidr__" > /opt/config/pktgen_private_net_cidr.txt
421             echo "__vlb_ipaddr__" > /opt/config/vlb_ipaddr.txt
422             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
423             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
424             echo "__install_script_version__" > /opt/config/install_script_version.txt
425             echo "__pg_int__" > /opt/config/pg_int.txt
426             echo "__vlb_mac__" > /opt/config/vlb_mac.txt
427             echo "__cloud_env__" > /opt/config/cloud_env.txt
428             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
429
430             # Download and run install script
431             apt-get -y install unzip
432             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
433             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
434             unzip -j /opt/vlb-scripts-__install_script_version__.zip -d /opt v_packetgen_install.sh
435             cd /opt
436             chmod +x v_packetgen_install.sh
437             ./v_packetgen_install.sh