60391d17887ea3349c411e872c5d49ec48818053
[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   vdns_image_name:
37     type: string
38     label: Image name or ID
39     description: Image to be used for compute instance
40   vdns_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   int_private_net_id:
49     type: string
50     label: vLoadBalancer private network name or ID
51     description: Private network that connects vLoadBalancer with vDNSs
52   int_private_subnet_id:
53     type: string
54     label: vLoadBalancer private subnet name or ID
55     description: Private subnet that connects vLoadBalancer with vDNSs
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   onap_private_net_cidr:
69     type: string
70     label: ONAP private network CIDR
71     description: The CIDR of the protected private network
72   vlb_int_private_ip_0:
73     type: string
74     label: vLoadBalancer private IP address towards the private network
75     description: Private IP address that is assigned to the vLoadBalancer to communicate with the vDNSs
76   vlb_onap_private_ip_0:
77     type: string
78     label: vLoadBalancer private IP address towards the ONAP management network
79     description: Private IP address that is assigned to the vLoadBalancer to communicate with ONAP components
80   vlb_int_pktgen_private_ip_0:
81     type: string
82     label: vLoadBalancer private IP address towards the vPacketGen network
83     description: Private IP address that is assigned to the vLoadBalancer to communicate with vPacketGen
84   vdns_int_private_ip_0:
85     type: string
86     label: vDNS private IP address towards the private network
87     description: Private IP address that is assigned to the vDNS to communicate with the vLoadBalancer
88   vdns_onap_private_ip_0:
89     type: string
90     label: vDNS private IP address towards the ONAP management network
91     description: Private IP address that is assigned to the vDNS to communicate with ONAP components
92   vdns_name_0:
93     type: string
94     label: vDNS name
95     description: Name of the vDNS
96   vnf_id:
97     type: string
98     label: VNF ID
99     description: The VNF ID is provided by ONAP
100   vnf_name:
101     type: string
102     label: VNF NAME
103     description: The VNF NAME is provided by ONAP
104   vf_module_id:
105     type: string
106     label: vFirewall module ID
107     description: The vLoadBalancer Module ID is provided by ONAP
108   key_name:
109     type: string
110     label: Key pair name
111     description: Public/Private key pair name
112   pub_key:
113     type: string
114     label: Public key
115     description: Public key to be installed on the compute instance
116   install_script_version:
117     type: string
118     label: Installation script version number
119     description: Version number of the scripts that install the vFW demo app
120   nb_api_version:
121     type: string
122     label: Northbound API version
123     description: Version number of the health check and config APIs
124   cloud_env:
125     type: string
126     label: Cloud environment
127     description: Cloud environment (e.g., openstack, rackspace)
128   nexus_artifact_repo:
129     type: string
130     description: Root URL for the Nexus repository for Maven artifacts.
131   sec_group:
132     type: string
133     description: ONAP Security Group
134
135 #############
136 #           #
137 # RESOURCES #
138 #           #
139 #############
140
141 resources:
142
143   random-str_1:
144     type: OS::Heat::RandomString
145     properties:
146       length: 4
147
148   my_keypair_1:
149     type: OS::Nova::KeyPair
150     properties:
151       name:
152         str_replace:
153           template: vnfname_base_rand
154           params:
155             base: { get_param: key_name }
156             rand: { get_resource: random-str_1 }
157             vnfname: { get_param: vnf_name }
158       public_key: { get_param: pub_key }
159       save_private_key: false
160
161   vdns_1_int_private_port_0:
162     type: OS::Neutron::Port
163     properties:
164       network: { get_param: int_private_net_id }
165       fixed_ips: [{"subnet": { get_param: int_private_subnet_id }, "ip_address": { get_param: vdns_int_private_ip_0 }}]
166       security_groups:
167       - { get_param: sec_group }
168
169   vdns_1_onap_private_port_0:
170     type: OS::Neutron::Port
171     properties:
172       network: { get_param: onap_private_net_id }
173       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_onap_private_ip_0 }}]
174       security_groups:
175       - { get_param: sec_group }
176
177   vdns_server_1:
178     type: OS::Nova::Server
179     properties:
180       image: { get_param: vdns_image_name }
181       flavor: { get_param: vdns_flavor_name }
182       name: { get_param: vdns_name_0 }
183       key_name: { get_resource: my_keypair_1 }
184       networks:
185         - network: { get_param: public_net_id }
186         - port: { get_resource: vdns_1_int_private_port_0 }
187         - port: { get_resource: vdns_1_onap_private_port_0 }
188       metadata:
189         vnf_id: { get_param: vnf_id }
190         vf_module_id: { get_param: vf_module_id }
191         vnf_name: { get_param: vnf_name }
192       user_data_format: RAW
193       user_data:
194         str_replace:
195           params:
196             __lb_oam_int__: { get_param: vlb_onap_private_ip_0 }
197             __lb_private_ipaddr__: { get_param: vlb_int_private_ip_0 }
198             __lb_to_pktgen_if__: { get_param: vlb_int_pktgen_private_ip_0}
199             __local_private_ipaddr__: { get_param: vdns_int_private_ip_0 }
200             __oam_private_ipaddr__: { get_param: vdns_onap_private_ip_0 }
201             __nb_api_version__: { get_param: nb_api_version }
202             __install_script_version__: { get_param: install_script_version }
203             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
204             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
205             __cloud_env__: { get_param: cloud_env }
206             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
207           template: |
208             #!/bin/bash
209
210             # Create configuration files
211             mkdir /opt/config
212             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
213             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
214             echo "__lb_to_pktgen_if__" > /opt/config/lb_to_pktgen_if.txt
215             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
216             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
217             echo "__nb_api_version__" > /opt/config/nb_api_version.txt
218             echo "__install_script_version__" > /opt/config/install_script_version.txt
219             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
220             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
221             echo "__cloud_env__" > /opt/config/cloud_env.txt
222             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
223
224             # Download and run install script
225             apt-get update
226             apt-get -y install unzip
227             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
228             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
229             unzip -j /opt/vlbms-scripts-__install_script_version__.zip -d /opt v_dns_install.sh
230             cd /opt
231             chmod +x v_dns_install.sh
232             ./v_dns_install.sh