Fix spacing issues in YAML files in heat
[demo.git] / heat / vCPE / vbng / base_vcpe_vbng.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)
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_subnet_id:
53     type: string
54     label: vBNG IN private sub-network name or ID
55     description: vBNG IN private sub-network name or ID
56   brgemu_bng_private_net_cidr:
57     type: string
58     label: vBNG IN private network CIDR
59     description: The CIDR of the input side of vBNG private network
60   bng_gmux_private_net_id:
61     type: string
62     label: vBNG vGMUX private network name or ID
63     description: Private network that connects vBNG to vGMUX
64   bng_gmux_private_subnet_id:
65     type: string
66     label: vBNG vGMUX private sub-network name or ID
67     description: vBNG vGMUX private sub-network name or ID
68   bng_gmux_private_net_cidr:
69     type: string
70     label: vGMUX private network CIDR
71     description: The CIDR of the input side of vGMUX private network
72   onap_private_net_id:
73     type: string
74     label: ONAP management network name or ID
75     description: Private network that connects ONAP components and the VNF
76   onap_private_subnet_id:
77     type: string
78     label: ONAP management sub-network name or ID
79     description: Private sub-network that connects ONAP components and the VNF
80   onap_private_net_cidr:
81     type: string
82     label: ONAP private network CIDR
83     description: The CIDR of the protected private network
84   cpe_signal_net_id:
85     type: string
86     label: vCPE private network name or ID
87     description: Private network that connects vCPE elements with vCPE infrastructure elements
88   cpe_signal_subnet_id:
89     type: string
90     label: vCPE private sub-network name or ID
91     description: vCPE private sub-network name or ID
92   cpe_signal_private_net_cidr:
93     type: string
94     label: vAAA private network CIDR
95     description: The CIDR of the vAAA private network
96   vbng_private_ip_0:
97     type: string
98     label: vBNG IN private IP address
99     description: Private IP address that is assigned to the vBNG IN
100   vbng_private_ip_1:
101     type: string
102     label: vBNG private IP address towards the ONAP management network
103     description: Private IP address that is assigned to the vBNG to communicate with ONAP components
104   vbng_private_ip_2:
105     type: string
106     label: vBNG to CPE_SIGNAL private IP address
107     description: Private IP address that is assigned to the vBNG in the CPE_SIGNAL network
108   vbng_private_ip_3:
109     type: string
110     label: vBNG to vGMUX private IP address
111     description: Private IP address that is assigned to the vBNG to vGMUX port
112   vbng_name_0:
113     type: string
114     label: vBNG name
115     description: Name of the vBNG
116   vnf_id:
117     type: string
118     label: VNF ID
119     description: The VNF ID is provided by ONAP
120   vf_module_id:
121     type: string
122     label: vCPE module ID
123     description: The vCPE Module ID is provided by ONAP
124   dcae_collector_ip:
125     type: string
126     label: DCAE collector IP address
127     description: IP address of the DCAE collector
128   dcae_collector_port:
129     type: string
130     label: DCAE collector port
131     description: Port of the DCAE collector
132   key_name:
133     type: string
134     label: Key pair name
135     description: Public/Private key pair name
136   pub_key:
137     type: string
138     label: Public key
139     description: Public key to be installed on the compute instance
140   script_version:
141     type: string
142     label: Installation script version number
143     description: Version number of the scripts that install the vFW demo app
144   demo_artifacts_version:
145     type: string
146     label: Artifacts version used in demo vnfs
147     description: Artifacts (jar, tar.gz) version used in demo vnfs
148   nexus_artifact_repo:
149     type: string
150     description: Root URL for the Nexus repository for Maven artifacts.
151     default: "https://nexus.onap.org"
152   cloud_env:
153     type: string
154     label: Cloud environment
155     description: Cloud environment (e.g., openstack, rackspace)
156   sdnc_ip_addr:
157     type: string
158     label: SDNC IP address
159     description: IP address of the SDNC
160
161 #############
162 #           #
163 # RESOURCES #
164 #           #
165 #############
166
167 resources:
168
169   random-str:
170     type: OS::Heat::RandomString
171     properties:
172       length: 4
173
174   my_keypair:
175     type: OS::Nova::KeyPair
176     properties:
177       name:
178         str_replace:
179           template: base_rand
180           params:
181             base: { get_param: key_name }
182             rand: { get_resource: random-str }
183       public_key: { get_param: pub_key }
184       save_private_key: false
185
186
187   # Virtual BNG Instantiation
188   vbng_private_0_port:
189     type: OS::Neutron::Port
190     properties:
191       network: { get_param: brgemu_bng_private_net_id }
192       fixed_ips: [{"subnet": { get_param: brgemu_bng_private_subnet_id }, "ip_address": { get_param: vbng_private_ip_0 }}]
193
194   vbng_private_1_port:
195     type: OS::Neutron::Port
196     properties:
197       network: { get_param: onap_private_net_id }
198       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vbng_private_ip_1 }}]
199
200   vbng_private_2_port:
201     type: OS::Neutron::Port
202     properties:
203       network: { get_param: cpe_signal_net_id }
204       fixed_ips: [{"subnet": { get_param: cpe_signal_subnet_id }, "ip_address": { get_param: vbng_private_ip_2 }}]
205
206   vbng_private_3_port:
207     type: OS::Neutron::Port
208     properties:
209       network: { get_param: bng_gmux_private_net_id }
210       fixed_ips: [{"subnet": { get_param: bng_gmux_private_subnet_id }, "ip_address": { get_param: vbng_private_ip_3 }}]
211
212   vbng_0:
213     type: OS::Nova::Server
214     properties:
215       image: { get_param: vcpe_image_name }
216       flavor: { get_param: vcpe_flavor_name }
217       name: { get_param: vbng_name_0 }
218       key_name: { get_resource: my_keypair }
219       networks:
220         - network: { get_param: public_net_id }
221         - port: { get_resource: vbng_private_0_port }
222         - port: { get_resource: vbng_private_1_port }
223         - port: { get_resource: vbng_private_2_port }
224         - port: { get_resource: vbng_private_3_port }
225       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
226       user_data_format: RAW
227       user_data:
228         str_replace:
229           params:
230             __oam_ipaddr__: { get_param: vbng_private_ip_1 }
231             __brgemu_bng_net_ipaddr__: { get_param: vbng_private_ip_0 }
232             __cpe_signal_net_ipaddr__: { get_param: vbng_private_ip_2 }
233             __bng_gmux_net_ipaddr__: { get_param: vbng_private_ip_3 }
234             __oam_cidr__: { get_param: onap_private_net_cidr }
235             __brgemu_bng_cidr__: { get_param: brgemu_bng_private_net_cidr }
236             __cpe_signal_cidr__: { get_param: cpe_signal_private_net_cidr }
237             __bng_gmux_cidr__: { get_param: bng_gmux_private_net_cidr }
238             __dcae_collector_ip__: { get_param: dcae_collector_ip }
239             __dcae_collector_port__: { get_param: dcae_collector_port }
240             __demo_artifacts_version__: { get_param: demo_artifacts_version }
241             __script_version__: { get_param: script_version }
242             __cloud_env__: { get_param: cloud_env }
243             __sdnc_ip_addr__: { get_param: sdnc_ip_addr }
244             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
245           template: |
246             #!/bin/bash
247
248             # Create configuration files
249             mkdir /opt/config
250             echo "__brgemu_bng_net_ipaddr__" > /opt/config/brgemu_bng_net_ipaddr.txt
251             echo "__cpe_signal_net_ipaddr__" > /opt/config/cpe_signal_net_ipaddr.txt
252             echo "__bng_gmux_net_ipaddr__" > /opt/config/bng_gmux_net_ipaddr.txt
253             echo "__oam_ipaddr__" > /opt/config/oam_ipaddr.txt
254             echo "__oam_cidr__" > /opt/config/oam_cidr.txt
255             echo "__bng_gmux_cidr__" > /opt/config/bng_gmux_net_cidr.txt
256             echo "__cpe_signal_cidr__" > /opt/config/cpe_signal_net_cidr.txt
257             echo "__brgemu_bng_cidr__" > /opt/config/brgemu_bng_net_cidr.txt
258             echo "__dcae_collector_ip__" > /opt/config/dcae_collector_ip.txt
259             echo "__dcae_collector_port__" > /opt/config/dcae_collector_port.txt
260             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
261             echo "__script_version__" > /opt/config/script_version.txt
262             echo "__cloud_env__" > /opt/config/cloud_env.txt
263             echo "__sdnc_ip_addr__" > /opt/config/sdnc_ip_addr.txt
264             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
265
266             # Download and run install script
267             apt-get update
268             apt-get -y install unzip
269             if [[ "__script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
270             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vcpe&a=vcpe-scripts&e=zip&v=__script_version__" -o /opt/vcpe-scripts-__script_version__.zip
271             unzip -j /opt/vcpe-scripts-__script_version__.zip -d /opt v_bng_install.sh
272             cd /opt
273             chmod +x v_bng_install.sh
274             ./v_bng_install.sh