Merge "removed vFW vLB extra executables"
[demo.git] / heat / vLB / dnsscaling_openstack.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4
5 #
6 # Copyright © 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_ip_0:
61     type: string
62     label: vLoadBalancer private IP address towards the private network
63     description: Private IP address that is assigned to the vLoadBalancer to communicate with the vDNSs
64   vlb_private_ip_1:
65     type: string
66     label: vLoadBalancer private IP address towards the ONAP management network
67     description: Private IP address that is assigned to the vLoadBalancer to communicate with ONAP components
68   vdns_private_ip_0:
69     type: string
70     label: vDNS private IP address towards the private network
71     description: Private IP address that is assigned to the vDNS to communicate with the vLoadBalancer
72   vdns_private_ip_1:
73     type: string
74     label: vDNS private IP address towards the ONAP management network
75     description: Private IP address that is assigned to the vDNS to communicate with ONAP components
76   vdns_name_0:
77     type: string
78     label: vDNS name
79     description: Name of the vDNS
80   vnf_id:
81     type: string
82     label: VNF ID
83     description: The VNF ID is provided by ONAP
84   vf_module_id:
85     type: string
86     label: vFirewall module ID
87     description: The vLoadBalancer Module ID is provided by ONAP
88   key_name:
89     type: string
90     label: Key pair name
91     description: Public/Private key pair name
92   pub_key:
93     type: string
94     label: Public key
95     description: Public key to be installed on the compute instance
96   repo_url_blob:
97     type: string
98     label: Repository URL
99     description: URL of the repository that hosts the demo packages
100   repo_url_artifacts:
101     type: string
102     label: Repository URL
103     description: URL of the repository that hosts the demo packages
104   install_script_version:
105     type: string
106     label: Installation script version number
107     description: Version number of the scripts that install the vFW demo app
108   demo_artifacts_version:
109     type: string
110     label: Artifacts version used in demo vnfs
111     description: Artifacts (jar, tar.gz) version used in demo vnfs
112   cloud_env:
113     type: string
114     label: Cloud environment
115     description: Cloud environment (e.g., openstack, rackspace)
116
117 #############
118 #           #
119 # RESOURCES #
120 #           #
121 #############
122
123 resources:
124
125   random-str:
126     type: OS::Heat::RandomString
127     properties:
128       length: 4
129
130   my_keypair:
131     type: OS::Nova::KeyPair
132     properties:
133       name:
134         str_replace:
135           template: base_rand
136           params:
137             base: { get_param: key_name }
138             rand: { get_resource: random-str }
139       public_key: { get_param: pub_key }
140       save_private_key: false
141
142   vdns_private_0_port:
143     type: OS::Neutron::Port
144     properties:
145       network: { get_param: vlb_private_net_id }
146       fixed_ips: [{"subnet": { get_param: vlb_private_net_id }, "ip_address": { get_param: vdns_private_ip_0 }}]
147
148   vdns_private_1_port:
149     type: OS::Neutron::Port
150     properties:
151       network: { get_param: onap_private_net_id }
152       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_private_ip_1 }}]
153
154   vdns_0:
155     type: OS::Nova::Server
156     properties:
157       image: { get_param: vlb_image_name }
158       flavor: { get_param: vlb_flavor_name }
159       name: { get_param: vdns_name_0 }
160       key_name: { get_resource: my_keypair }
161       networks:
162         - network: { get_param: public_net_id }
163         - port: { get_resource: vdns_private_0_port }
164         - port: { get_resource: vdns_private_1_port }
165       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
166       user_data_format: RAW
167       user_data:
168         str_replace:
169           params:
170             __lb_oam_int__: { get_param: vlb_private_ip_1 }
171             __lb_private_ipaddr__: { get_param: vlb_private_ip_0 }
172             __local_private_ipaddr__: { get_param: vdns_private_ip_0 }
173             __oam_private_ipaddr__: { get_param: vdns_private_ip_1 }
174             __repo_url_blob__: { get_param: repo_url_blob }
175             __repo_url_artifacts__: { get_param: repo_url_artifacts }
176             __demo_artifacts_version__: { get_param: demo_artifacts_version }
177             __install_script_version__: { get_param: install_script_version }
178             __cloud_env__: { get_param: cloud_env }
179           template: |
180             #!/bin/bash
181
182             # Create configuration files
183             mkdir /opt/config
184             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
185             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
186             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
187             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
188             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
189             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
190             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
191             echo "__install_script_version__" > /opt/config/install_script_version.txt
192             echo "__cloud_env__" > /opt/config/cloud_env.txt
193
194             # Download and run install script
195             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vlb/__install_script_version__/v_dns_install.sh -o /opt/v_dns_install.sh
196             cd /opt
197             chmod +x v_dns_install.sh
198             ./v_dns_install.sh