Correct path of JAR files
[demo.git] / heat / vLBMS / dnsscaling.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 a vDNS for ONAP (scaling-up scenario)
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   onap_private_net_id:
53     type: string
54     label: ONAP management network name or ID
55     description: Private network that connects ONAP component and the VNF
56   onap_private_subnet_id:
57     type: string
58     label: ONAP management sub-network name or ID
59     description: Private sub-network that connects ONAP component and the VNF
60   vlb_private_net_cidr:
61     type: string
62     label: vLoadBalancer private network CIDR
63     description: The CIDR of the vLoadBalancer private network
64   onap_private_net_cidr:
65     type: string
66     label: ONAP private network CIDR
67     description: The CIDR of the protected private network
68   vlb_private_ip_0:
69     type: string
70     label: vLoadBalancer private IP address towards the private network
71     description: Private IP address that is assigned to the vLoadBalancer to communicate with the vDNSs
72   vlb_private_ip_1:
73     type: string
74     label: vLoadBalancer private IP address towards the ONAP management network
75     description: Private IP address that is assigned to the vLoadBalancer to communicate with ONAP components
76   vlb_private_ip_2:
77     type: string
78     label: vLoadBalancer private IP address towards the vPacketGen network
79     description: Private IP address that is assigned to the vLoadBalancer to communicate with vPacketGen
80   vdns_private_ip_0:
81     type: string
82     label: vDNS private IP address towards the private network
83     description: Private IP address that is assigned to the vDNS to communicate with the vLoadBalancer
84   vdns_private_ip_1:
85     type: string
86     label: vDNS private IP address towards the ONAP management network
87     description: Private IP address that is assigned to the vDNS to communicate with ONAP components
88   vdns_name_0:
89     type: string
90     label: vDNS name
91     description: Name of the vDNS
92   vnf_id:
93     type: string
94     label: VNF ID
95     description: The VNF ID is provided by ONAP
96   vf_module_id:
97     type: string
98     label: vFirewall module ID
99     description: The vLoadBalancer Module ID is provided by ONAP
100   key_name:
101     type: string
102     label: Key pair name
103     description: Public/Private key pair name
104   pub_key:
105     type: string
106     label: Public key
107     description: Public key to be installed on the compute instance
108   install_script_version:
109     type: string
110     label: Installation script version number
111     description: Version number of the scripts that install the vFW demo app
112   nb_api_version:
113     type: string
114     label: Northbound API version
115     description: Version number of the health check and config APIs
116   cloud_env:
117     type: string
118     label: Cloud environment
119     description: Cloud environment (e.g., openstack, rackspace)
120   nexus_artifact_repo:
121     type: string
122     description: Root URL for the Nexus repository for Maven artifacts.
123     default: "https://nexus.onap.org"
124   sec_group:
125     type: string
126     description: ONAP Security Group
127   dns_enabled:
128     type: string
129     description: Enable/disable DNS (by default use true)
130
131 #############
132 #           #
133 # RESOURCES #
134 #           #
135 #############
136
137 resources:
138
139   random-str:
140     type: OS::Heat::RandomString
141     properties:
142       length: 4
143
144   my_keypair:
145     type: OS::Nova::KeyPair
146     properties:
147       name:
148         str_replace:
149           template: base_rand
150           params:
151             base: { get_param: key_name }
152             rand: { get_resource: random-str }
153       public_key: { get_param: pub_key }
154       save_private_key: false
155
156   vdns_2_private_0_port:
157     type: OS::Neutron::Port
158     properties:
159       network: { get_param: vlb_private_net_id }
160       fixed_ips: [{"subnet": { get_param: vlb_private_net_id }, "ip_address": { get_param: vdns_private_ip_0 }}]
161       security_groups:
162       - { get_param: sec_group }
163
164   vdns_2_private_1_port:
165     type: OS::Neutron::Port
166     properties:
167       network: { get_param: onap_private_net_id }
168       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_private_ip_1 }}]
169       security_groups:
170       - { get_param: sec_group }
171
172   vdns_2:
173     type: OS::Nova::Server
174     properties:
175       image: { get_param: vlb_image_name }
176       flavor: { get_param: vlb_flavor_name }
177       name: { get_param: vdns_name_0 }
178       key_name: { get_resource: my_keypair }
179       networks:
180         - network: { get_param: public_net_id }
181         - port: { get_resource: vdns_2_private_0_port }
182         - port: { get_resource: vdns_2_private_1_port }
183       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
184       user_data_format: RAW
185       user_data:
186         str_replace:
187           params:
188             __lb_oam_int__: { get_param: vlb_private_ip_1 }
189             __lb_private_ipaddr__: { get_param: vlb_private_ip_0 }
190             __lb_to_pktgen_if__: { get_param: vlb_private_ip_2}
191             __local_private_ipaddr__: { get_param: vdns_private_ip_0 }
192             __oam_private_ipaddr__: { get_param: vdns_private_ip_1 }
193             __nb_api_version__: { get_param: nb_api_version }
194             __install_script_version__: { get_param: install_script_version }
195             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
196             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
197             __cloud_env__: { get_param: cloud_env }
198             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
199           template: |
200             #!/bin/bash
201
202             # Create configuration files
203             mkdir /opt/config
204             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
205             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
206             echo "__lb_to_pktgen_if__" > /opt/config/lb_to_pktgen_if.txt
207             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
208             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
209             echo "__nb_api_version__" > /opt/config/nb_api_version.txt
210             echo "__install_script_version__" > /opt/config/install_script_version.txt
211             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
212             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
213             echo "__cloud_env__" > /opt/config/cloud_env.txt
214             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
215
216             # Download and run install script
217             apt-get update
218             apt-get -y install unzip
219             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
220             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlbms&a=vlbms-scripts&e=zip&v=__install_script_version__" -o /opt/vlbms-scripts-__install_script_version__.zip
221             unzip -j /opt/vlbms-scripts-__install_script_version__.zip -d /opt v_dns_install.sh
222             cd /opt
223             chmod +x v_dns_install.sh
224             ./v_dns_install.sh