Clean up vCPE Heat templates
[demo.git] / heat / vCPE / vbng / base_vcpe_vbng_rackspace.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 vCPE virtual Broadband Network Gateway (vBNG) for ONAP
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36   vcpe_image_name:
37     type: string
38     label: Image name or ID
39     description: Image to be used for compute instance
40   vcpe_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   brgemu_bng_private_net_id:
49     type: string
50     label: vBNG IN private network name or ID
51     description: Private network that connects vBRG to vBNG
52   brgemu_bng_private_net_cidr:
53     type: string
54     label: vBNG IN private network CIDR
55     description: The CIDR of the input side of vBNG private network
56   bng_gmux_private_net_id:
57     type: string
58     label: vBNG vGMUX private network name or ID
59     description: Private network that connects vBNG to vGMUX
60   bng_gmux_private_net_cidr:
61     type: string
62     label: vGMUX private network CIDR
63     description: The CIDR of the input side of vGMUX private network
64   onap_private_net_id:
65     type: string
66     label: ONAP management network name or ID
67     description: Private network that connects ONAP components and the VNF
68   onap_private_subnet_id:
69     type: string
70     label: ONAP management sub-network name or ID
71     description: Private sub-network that connects ONAP components and the VNF
72   cpe_signal_net_id:
73     type: string
74     label: vCPE private network name or ID
75     description: Private network that connects vCPE elements with vCPE infrastructure elements
76   vbng_private_ip_0:
77     type: string
78     label: vBNG IN private IP address
79     description: Private IP address that is assigned to the vBNG IN
80   vbng_private_ip_1:
81     type: string
82     label: vBNG private IP address towards the ONAP management network
83     description: Private IP address that is assigned to the vBNG to communicate with ONAP components
84   vbng_private_ip_2:
85     type: string
86     label: vBNG to CPE_SIGNAL private IP address
87     description: Private IP address that is assigned to the vBNG in the CPE_SIGNAL network
88   vbng_private_ip_3:
89     type: string
90     label: vBNG to vGMUX private IP address
91     description: Private IP address that is assigned to the vBNG to vGMUX port
92   vbng_name_0:
93     type: string
94     label: vBNG name
95     description: Name of the vBNG
96   vnf_id:
97     type: string
98     label: VNF ID
99     description: The VNF ID is provided by ONAP
100   vf_module_id:
101     type: string
102     label: vCPE module ID
103     description: The vCPE Module ID is provided by ONAP
104   dcae_collector_ip:
105     type: string
106     label: DCAE collector IP address
107     description: IP address of the DCAE collector
108   dcae_collector_port:
109     type: string
110     label: DCAE collector port
111     description: Port of the DCAE collector
112   key_name:
113     type: string
114     label: Key pair name
115     description: Public/Private key pair name
116   pub_key:
117     type: string
118     label: Public key
119     description: Public key to be installed on the compute instance
120   repo_url_blob:
121     type: string
122     label: Repository URL
123     description: URL of the repository that hosts the demo packages
124   repo_url_artifacts:
125     type: string
126     label: Repository URL
127     description: URL of the repository that hosts the demo packages
128   install_script_version:
129     type: string
130     label: Installation script version number
131     description: Version number of the scripts that install the vFW demo app
132   demo_artifacts_version:
133     type: string
134     label: Artifacts version used in demo vnfs
135     description: Artifacts (jar, tar.gz) version used in demo vnfs
136   cloud_env:
137     type: string
138     label: Cloud environment
139     description: Cloud environment (e.g., openstack, rackspace)
140
141 #############
142 #           #
143 # RESOURCES #
144 #           #
145 #############
146
147 resources:
148
149   random-str:
150     type: OS::Heat::RandomString
151     properties:
152       length: 4
153
154   my_keypair:
155     type: OS::Nova::KeyPair
156     properties:
157       name:
158         str_replace:
159           template: base_rand
160           params:
161             base: { get_param: key_name }
162             rand: { get_resource: random-str }
163       public_key: { get_param: pub_key }
164       save_private_key: false
165
166   brgemu_bng_private_network:
167     type: OS::Neutron::Net
168     properties:
169       name: { get_param: brgemu_bng_private_net_id }
170
171   brgemu_bng_in_private_subnet:
172     type: OS::Neutron::Subnet
173     properties:
174       name: { get_param: brgemu_bng_private_net_id }
175       network_id: { get_resource: brgemu_bng_private_network }
176       cidr: { get_param: brgemu_bng_private_net_cidr }
177
178   bng_gmux_private_network:
179     type: OS::Neutron::Net
180     properties:
181       name: { get_param: bng_gmux_private_net_id }
182
183   bng_gmux_private_subnet:
184     type: OS::Neutron::Subnet
185     properties:
186       name: { get_param: bng_gmux_private_net_id }
187       network_id: { get_resource: bng_gmux_private_network }
188       cidr: { get_param: bng_gmux_private_net_cidr }
189
190
191   # Virtual BNG Instantiation
192   vbng_private_0_port:
193     type: OS::Neutron::Port
194     properties:
195       network: { get_resource: brgemu_bng_private_network }
196       fixed_ips: [{"subnet": { get_resource: brgemu_bng_private_subnet}, "ip_address": { get_param: vbng_private_ip_0 }}]
197
198   vbng_private_1_port:
199     type: OS::Neutron::Port
200     properties:
201       network: { get_param: onap_private_net_id }
202       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vbng_private_ip_1 }}]
203
204   vbng_private_2_port:
205     type: OS::Neutron::Port
206     properties:
207       network: { get_param: cpe_signal_net_id }
208       fixed_ips: [{"subnet": { get_param: cpe_signal_net_id}, "ip_address": { get_param: vbng_private_ip_2 }}]
209
210   vbng_private_3_port:
211     type: OS::Neutron::Port
212     properties:
213       network: { get_resource: bng_gmux_private_network }
214       fixed_ips: [{"subnet": { get_resource: bng_gmux_private_subnet}, "ip_address": { get_param: vbng_private_ip_3 }}]
215
216   vbng_0:
217     type: OS::Nova::Server
218     properties:
219       image: { get_param: vcpe_image_name }
220       flavor: { get_param: vcpe_flavor_name }
221       name: { get_param: vbng_name_0 }
222       key_name: { get_resource: my_keypair }
223       networks:
224         - network: { get_param: public_net_id }
225         - port: { get_resource: vbng_private_0_port }
226         - port: { get_resource: vbng_private_1_port }
227         - port: { get_resource: vbng_private_2_port }
228       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
229       user_data_format: RAW
230       user_data:
231         str_replace:
232           params:
233             __dcae_collector_ip__: { get_param: dcae_collector_ip }
234             __dcae_collector_port__: { get_param: dcae_collector_port }
235             __local_private_ipaddr__: { get_param: vbng_private_ip_1 }
236             __repo_url_blob__ : { get_param: repo_url_blob }
237             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
238             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
239             __install_script_version__ : { get_param: install_script_version }
240             __cloud_env__ : { get_param: cloud_env }
241           template: |
242             #!/bin/bash
243
244             # Create configuration files
245             mkdir /opt/config
246             echo "__dcae_collector_ip__" > /opt/config/dcae_collector_ip.txt
247             echo "__dcae_collector_port__" > /opt/config/dcae_collector_port.txt
248             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
249             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
250             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
251             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
252             echo "__install_script_version__" > /opt/config/install_script_version.txt
253             echo "__cloud_env__" > /opt/config/cloud_env.txt
254
255             # Download and run install script
256             curl -k __repo_url_blob__/org.onap.demo/vnfs/vbng/__install_script_version__/v_bng_install.sh -o /opt/v_bng_install.sh
257             cd /opt
258             chmod +x v_bng_install.sh
259             ./v_bng_install.sh