ecdb1b1b413dc6d4b23b5c5765dd792a08a67d1a
[demo.git] / heat / vCPE / vgmux / base_vcpe_vgmux.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 Infrastructue Metro vGMUX
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   bng_gmux_private_net_id:
49     type: string
50     label: vBNG vGMUX private network name or ID
51     description: Private network that connects vBNG to vGMUX
52   bng_gmux_private_subnet_id:
53     type: string
54     label: vBNG vGMUX private sub-network name or ID
55     description: vBNG vGMUX private sub-network name or ID
56   bng_gmux_private_net_cidr:
57     type: string
58     label: vBNG vGMUX private network CIDR
59     description: The CIDR of the vBNG-vGMUX private network
60   mux_gw_private_net_id:
61     type: string
62     label: vGMUX vGWs network name or ID
63     description: Private network that connects vGMUX to vGWs
64   mux_gw_private_subnet_id:
65     type: string
66     label: vGMUX vGWs sub-network name or ID
67     description: vGMUX vGWs sub-network name or ID
68   mux_gw_private_net_cidr:
69     type: string
70     label: vGMUX private network CIDR
71     description: The CIDR of the 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   vgmux_private_ip_0:
85     type: string
86     label: vGMUX private IP address towards the vBNG-vGMUX private network
87     description: Private IP address that is assigned to the vGMUX to communicate with the vBNG
88   vgmux_private_ip_1:
89     type: string
90     label: vGMUX private IP address towards the ONAP management network
91     description: Private IP address that is assigned to the vGMUX to communicate with ONAP components
92   vgmux_private_ip_2:
93     type: string
94     label: vGMUX private IP address towards the vGMUX-vGW private network
95     description: Private IP address that is assigned to the vGMUX to communicate with vGWs
96   vgmux_name_0:
97     type: string
98     label: vGMUX name
99     description: Name of the vGMUX
100   vnf_id:
101     type: string
102     label: VNF ID
103     description: The VNF ID is provided by ONAP
104   vf_module_id:
105     type: string
106     label: vCPE module ID
107     description: The vCPE Module ID is provided by ONAP
108   dcae_collector_ip:
109     type: string
110     label: DCAE collector IP address
111     description: IP address of the DCAE collector
112   dcae_collector_port:
113     type: string
114     label: DCAE collector port
115     description: Port of the DCAE collector
116   key_name:
117     type: string
118     label: Key pair name
119     description: Public/Private key pair name
120   pub_key:
121     type: string
122     label: Public key
123     description: Public key to be installed on the compute instance
124   repo_url_blob:
125     type: string
126     label: Repository URL
127     description: URL of the repository that hosts the demo packages
128   repo_url_artifacts:
129     type: string
130     label: Repository URL
131     description: URL of the repository that hosts the demo packages
132   install_script_version:
133     type: string
134     label: Installation script version number
135     description: Version number of the scripts that install the vFW demo app
136   demo_artifacts_version:
137     type: string
138     label: Artifacts version used in demo vnfs
139     description: Artifacts (jar, tar.gz) version used in demo vnfs
140   cloud_env:
141     type: string
142     label: Cloud environment
143     description: Cloud environment (e.g., openstack, rackspace)
144   vpp_source_repo_url:
145     type: string
146     label: VPP Source Git Repo
147     description: URL for VPP source codes
148   vpp_source_repo_branch:
149     type: string
150     label: VPP Source Git Branch
151     description: Git Branch for the VPP source codes
152   hc2vpp_source_repo_url:
153     type: string
154     label: Honeycomb Source Git Repo
155     description: URL for Honeycomb source codes
156   hc2vpp_source_repo_branch:
157     type: string
158     label: Honeycomb Source Git Branch
159     description: Git Branch for the Honeycomb source codes
160   vpp_patch_url:
161     type: string
162     label: VPP Patch URL
163     description: URL for VPP patch for vG-MUX
164   hc2vpp_patch_url:
165     type: string
166     label: Honeycomb Patch URL
167     description: URL for Honeycomb patch for vG-MUX
168   libevel_patch_url:
169     type: string
170     label: libevel Patch URL
171     description: URL for libevel patch for vG-MUX
172
173 #############
174 #           #
175 # RESOURCES #
176 #           #
177 #############
178
179 resources:
180
181   random-str:
182     type: OS::Heat::RandomString
183     properties:
184       length: 4
185
186   my_keypair:
187     type: OS::Nova::KeyPair
188     properties:
189       name:
190         str_replace:
191           template: base_rand
192           params:
193             base: { get_param: key_name }
194             rand: { get_resource: random-str }
195       public_key: { get_param: pub_key }
196       save_private_key: false
197
198
199   # Virtual GMUX Instantiation
200   vgmux_private_0_port:
201     type: OS::Neutron::Port
202     properties:
203       network: { get_param: bng_gmux_private_net_id }
204       fixed_ips: [{"subnet": { get_param: bng_gmux_private_subnet_id }, "ip_address": { get_param: vgmux_private_ip_0 }}]
205
206   vgmux_private_1_port:
207     type: OS::Neutron::Port
208     properties:
209       network: { get_param: onap_private_net_id }
210       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vgmux_private_ip_1 }}]
211
212   vgmux_private_2_port:
213     type: OS::Neutron::Port
214     properties:
215       network: { get_param: mux_gw_private_net_id }
216       fixed_ips: [{"subnet": {  get_param: mux_gw_private_subnet_id }, "ip_address": { get_param: vgmux_private_ip_2 }}]
217
218   vgmux_0:
219     type: OS::Nova::Server
220     properties:
221       image: { get_param: vcpe_image_name }
222       flavor: { get_param: vcpe_flavor_name }
223       name: { get_param: vgmux_name_0 }
224       key_name: { get_resource: my_keypair }
225       networks:
226         - network: { get_param: public_net_id }
227         - port: { get_resource: vgmux_private_0_port }
228         - port: { get_resource: vgmux_private_1_port }
229         - port: { get_resource: vgmux_private_2_port }
230       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
231       user_data_format: RAW
232       user_data:
233         str_replace:
234           params:
235             __bng_mux_net_ipaddr__ : { get_param: vgmux_private_ip_0 }
236             __oam_ipaddr__ : { get_param: vgmux_private_ip_1 }
237             __mux_gw_net_ipaddr__ : { get_param: vgmux_private_ip_2 }
238             __bng_mux_net_cidr__ : { get_param: bng_gmux_private_net_cidr }
239             __oam_cidr__ : { get_param: onap_private_net_cidr }
240             __mux_gw_net_cidr__ : { get_param: mux_gw_private_net_cidr }
241             __repo_url_blob__ : { get_param: repo_url_blob }
242             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
243             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
244             __install_script_version__ : { get_param: install_script_version }
245             __cloud_env__ : { get_param: cloud_env }
246             __vpp_source_repo_url__ : { get_param: vpp_source_repo_url }
247             __vpp_source_repo_branch__ : { get_param: vpp_source_repo_branch }
248             __hc2vpp_source_repo_url__ : { get_param: hc2vpp_source_repo_url }
249             __hc2vpp_source_repo_branch__ : { get_param: hc2vpp_source_repo_branch }
250             __vpp_patch_url__ : { get_param: vpp_patch_url }
251             __hc2vpp_patch_url__ : { get_param: hc2vpp_patch_url }
252             __libevel_patch_url__ : { get_param: libevel_patch_url }
253           template: |
254             #!/bin/bash
255
256             # Create configuration files
257             mkdir /opt/config
258             echo "__bng_mux_net_ipaddr__" > /opt/config/bng_mux_net_ipaddr.txt
259             echo "__oam_ipaddr__" > /opt/config/oam_ipaddr.txt
260             echo "__mux_gw_net_ipaddr__" > /opt/config/mux_gw_net_ipaddr.txt
261             echo "__bng_mux_net_cidr__" > /opt/config/bng_mux_net_cidr.txt
262             echo "__oam_cidr__" > /opt/config/oam_cidr.txt
263             echo "__mux_gw_net_cidr__" > /opt/config/mux_gw_net_cidr.txt
264             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
265             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
266             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
267             echo "__install_script_version__" > /opt/config/install_script_version.txt
268             echo "__cloud_env__" > /opt/config/cloud_env.txt
269             echo "__vpp_source_repo_url__" > /opt/config/vpp_source_repo_url.txt
270             echo "__vpp_source_repo_branch__" > /opt/config/vpp_source_repo_branch.txt
271             echo "__vpp_patch_url__" > /opt/config/vpp_patch_url.txt
272             echo "__hc2vpp_source_repo_url__" > /opt/config/hc2vpp_source_repo_url.txt
273             echo "__hc2vpp_source_repo_branch__" > /opt/config/hc2vpp_source_repo_branch.txt
274             echo "__hc2vpp_patch_url__" > /opt/config/hc2vpp_patch_url.txt
275             echo "__libevel_patch_url__" > /opt/config/libevel_patch_url.txt
276
277             # Download and run install script
278             curl -k __repo_url_blob__/org.onap.demo/vnfs/vcpe/__install_script_version__/v_gmux_install.sh -o /opt/v_gmux_install.sh
279             cd /opt
280             chmod +x v_gmux_install.sh
281             ./v_gmux_install.sh