Fix Honeycomb installation in vDNS VM
[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 vLB/vDNS demo app
120   demo_artifacts_version:
121     type: string
122     label: Artifacts version used in demo vnfs
123     description: Artifacts (jar, tar.gz) version used in demo vnfs
124   nb_api_version:
125     type: string
126     label: Northbound API version
127     description: Version number of the health check and config APIs
128   cloud_env:
129     type: string
130     label: Cloud environment
131     description: Cloud environment (e.g., openstack, rackspace)
132   nexus_artifact_repo:
133     type: string
134     description: Root URL for the Nexus repository for Maven artifacts.
135   sec_group:
136     type: string
137     description: ONAP Security Group
138
139 #############
140 #           #
141 # RESOURCES #
142 #           #
143 #############
144
145 resources:
146
147   random-str_1:
148     type: OS::Heat::RandomString
149     properties:
150       length: 4
151
152   my_keypair_1:
153     type: OS::Nova::KeyPair
154     properties:
155       name:
156         str_replace:
157           template: vnfname_base_rand
158           params:
159             base: { get_param: key_name }
160             rand: { get_resource: random-str_1 }
161             vnfname: { get_param: vnf_name }
162       public_key: { get_param: pub_key }
163       save_private_key: false
164
165   vdns_1_int_private_port_0:
166     type: OS::Neutron::Port
167     properties:
168       network: { get_param: int_private_net_id }
169       fixed_ips: [{"subnet": { get_param: int_private_subnet_id }, "ip_address": { get_param: vdns_int_private_ip_0 }}]
170       security_groups:
171       - { get_param: sec_group }
172
173   vdns_1_onap_private_port_0:
174     type: OS::Neutron::Port
175     properties:
176       network: { get_param: onap_private_net_id }
177       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_onap_private_ip_0 }}]
178       security_groups:
179       - { get_param: sec_group }
180
181   vdns_server_1:
182     type: OS::Nova::Server
183     properties:
184       image: { get_param: vdns_image_name }
185       flavor: { get_param: vdns_flavor_name }
186       name: { get_param: vdns_name_0 }
187       key_name: { get_resource: my_keypair_1 }
188       networks:
189         - network: { get_param: public_net_id }
190         - port: { get_resource: vdns_1_int_private_port_0 }
191         - port: { get_resource: vdns_1_onap_private_port_0 }
192       metadata:
193         vnf_id: { get_param: vnf_id }
194         vf_module_id: { get_param: vf_module_id }
195         vnf_name: { get_param: vnf_name }
196       user_data_format: RAW
197       user_data:
198         str_replace:
199           params:
200             __lb_oam_int__: { get_param: vlb_onap_private_ip_0 }
201             __lb_private_ipaddr__: { get_param: vlb_int_private_ip_0 }
202             __lb_to_pktgen_if__: { get_param: vlb_int_pktgen_private_ip_0}
203             __local_private_ipaddr__: { get_param: vdns_int_private_ip_0 }
204             __oam_private_ipaddr__: { get_param: vdns_onap_private_ip_0 }
205             __nb_api_version__: { get_param: nb_api_version }
206             __install_script_version__: { get_param: install_script_version }
207             __demo_artifacts_version__: { get_param: demo_artifacts_version }
208             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
209             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
210             __cloud_env__: { get_param: cloud_env }
211             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
212           template: |
213             #!/bin/bash
214
215             # Create configuration files
216             mkdir /opt/config
217             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
218             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
219             echo "__lb_to_pktgen_if__" > /opt/config/lb_to_pktgen_if.txt
220             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
221             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
222             echo "__nb_api_version__" > /opt/config/nb_api_version.txt
223             echo "__install_script_version__" > /opt/config/install_script_version.txt
224             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
225             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
226             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
227             echo "__cloud_env__" > /opt/config/cloud_env.txt
228             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
229
230             # Download and run install script
231             apt-get update
232             apt-get -y install unzip
233             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
234             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
235             unzip -j /opt/vlbms-scripts-__install_script_version__.zip -d /opt v_dns_install.sh
236             cd /opt
237             chmod +x v_dns_install.sh
238             ./v_dns_install.sh