SNIRO Emulator - Adding SNIRO emulator container
[demo.git] / heat / vCPE / vgmux / base_vcpe_vgmux_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 Infrastructue Metro vGMUX 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   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_net_cidr:
53     type: string
54     label: vBNG vGMUX private network CIDR
55     description: The CIDR of the vBNG-vGMUX private network
56   mux_gw_private_net_id:
57     type: string
58     label: vCPE Public network name or ID
59     description: Private network that connects vGMUX to vGWs
60   mux_gw_private_net_cidr:
61     type: string
62     label: vGMUX private network CIDR
63     description: The CIDR of the 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   onap_private_net_cidr:
73     type: string
74     label: ONAP private network CIDR
75     description: The CIDR of the protected private network
76   vgmux_private_ip_0:
77     type: string
78     label: vGMUX private IP address towards the vBNG-vGMUX private network
79     description: Private IP address that is assigned to the vGMUX to communicate with the vBNG
80   vgmux_private_ip_1:
81     type: string
82     label: vGMUX private IP address towards the ONAP management network
83     description: Private IP address that is assigned to the vGMUX to communicate with ONAP components
84   vgmux_private_ip_2:
85     type: string
86     label: vGMUX private IP address towards the vGMUX-vGW private network
87     description: Private IP address that is assigned to the vGMUX to communicate with vGWs
88   vgmux_name_0:
89     type: string
90     label: vGMUX name
91     description: Name of the vGMUX
92   vnf_id:
93     type: string
94     label: VNF ID
95     description: The VNF ID is provided by ONAP
96   vf_module_id:
97     type: string
98     label: vCPE module ID
99     description: The vCPE Module ID is provided by ONAP
100   dcae_collector_ip:
101     type: string
102     label: DCAE collector IP address
103     description: IP address of the DCAE collector
104   dcae_collector_port:
105     type: string
106     label: DCAE collector port
107     description: Port of the DCAE collector
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   repo_url_blob:
117     type: string
118     label: Repository URL
119     description: URL of the repository that hosts the demo packages
120   repo_url_artifacts:
121     type: string
122     label: Repository URL
123     description: URL of the repository that hosts the demo packages
124   install_script_version:
125     type: string
126     label: Installation script version number
127     description: Version number of the scripts that install the vFW demo app
128   demo_artifacts_version:
129     type: string
130     label: Artifacts version used in demo vnfs
131     description: Artifacts (jar, tar.gz) version used in demo vnfs
132   cloud_env:
133     type: string
134     label: Cloud environment
135     description: Cloud environment (e.g., openstack, rackspace)
136   vpp_source_repo_url:
137     type: string
138     label: VPP Source Git Repo
139     description: URL for VPP source codes
140   vpp_source_repo_branch:
141     type: string
142     label: VPP Source Git Branch
143     description: Git Branch for the VPP source codes
144   hc2vpp_source_repo_url:
145     type: string
146     label: Honeycomb Source Git Repo
147     description: URL for Honeycomb source codes
148   hc2vpp_source_repo_branch:
149     type: string
150     label: Honeycomb Source Git Branch
151     description: Git Branch for the Honeycomb source codes
152   vpp_patch_url:
153     type: string
154     label: VPP Patch URL
155     description: URL for VPP patch for vG-MUX
156   hc2vpp_patch_url:
157     type: string
158     label: Honeycomb Patch URL
159     description: URL for Honeycomb patch for vG-MUX
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   mux_gw_private_network:
187     type: OS::Neutron::Net
188     properties:
189       name: { get_param: mux_gw_private_net_id }
190
191   mux_gw_private_subnet:
192     type: OS::Neutron::Subnet
193     properties:
194       name: { get_param: mux_gw_private_net_id }
195       network_id: { get_resource: mux_gw_private_network }
196       cidr: { get_param: mux_gw_private_net_cidr }
197       
198   bng_gmux_private_network:
199     type: OS::Neutron::Net
200     properties:
201       name: { get_param: bng_gmux_private_net_id }
202
203   bng_gmux_private_subnet:
204     type: OS::Neutron::Subnet
205     properties:
206       name: { get_param: bng_gmux_private_net_id }
207       network_id: { get_resource: bng_gmux_private_network }
208       cidr: { get_param: bng_gmux_private_net_cidr }
209
210   # Virtual GMUX Instantiation
211   vgmux_private_0_port:
212     type: OS::Neutron::Port
213     properties:
214       network: { get_resource: bng_gmux_private_network }
215       fixed_ips: [{"subnet": { get_resource: bng_gmux_private_subnet }, "ip_address": { get_param: vgmux_private_ip_0 }}]
216
217   vgmux_private_1_port:
218     type: OS::Neutron::Port
219     properties:
220       network: { get_param: onap_private_net_id }
221       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vgmux_private_ip_1 }}]
222
223   vgmux_private_2_port:
224     type: OS::Neutron::Port
225     properties:
226       network: { get_resource: mux_gw_private_network }
227       fixed_ips: [{"subnet": {  get_resource: mux_gw_private_subnet }, "ip_address": { get_param: vgmux_private_ip_2 }}]
228
229   vgmux_0:
230     type: OS::Nova::Server
231     properties:
232       image: { get_param: vcpe_image_name }
233       flavor: { get_param: vcpe_flavor_name }
234       name: { get_param: vgmux_name_0 }
235       key_name: { get_resource: my_keypair }
236       networks:
237         - network: { get_param: public_net_id }
238         - port: { get_resource: vgmux_private_0_port }
239         - port: { get_resource: vgmux_private_1_port }
240         - port: { get_resource: vgmux_private_2_port }
241       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
242       user_data_format: RAW
243       user_data:
244         str_replace:
245           params:
246             __bng_mux_net_ipaddr__ : { get_param: vgmux_private_ip_0 }
247             __oam_ipaddr__ : { get_param: vgmux_private_ip_1 }
248             __mux_gw_net_ipaddr__ : { get_param: vgmux_private_ip_2 }
249             __bng_mux_net_cidr__ : { get_param: bng_gmux_private_net_cidr }
250             __oam_cidr__ : { get_param: onap_private_net_cidr }
251             __mux_gw_net_cidr__ : { get_param: mux_gw_private_net_cidr }
252             __repo_url_blob__ : { get_param: repo_url_blob }
253             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
254             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
255             __install_script_version__ : { get_param: install_script_version }
256             __cloud_env__ : { get_param: cloud_env }
257             __vpp_source_repo_url__ : { get_param: vpp_source_repo_url }
258             __vpp_source_repo_branch__ : { get_param: vpp_source_repo_branch }
259             __hc2vpp_source_repo_url__ : { get_param: hc2vpp_source_repo_url }
260             __hc2vpp_source_repo_branch__ : { get_param: hc2vpp_source_repo_branch }
261             __vpp_patch_url__ : { get_param: vpp_patch_url }
262             __hc2vpp_patch_url__ : { get_param: hc2vpp_patch_url }
263           template: |
264             #!/bin/bash
265
266             # Create configuration files
267             mkdir /opt/config
268             echo "__bng_mux_net_ipaddr__" > /opt/config/bng_mux_net_ipaddr.txt
269             echo "__oam_ipaddr__" > /opt/config/oam_ipaddr.txt
270             echo "__mux_gw_net_ipaddr__" > /opt/config/mux_gw_net_ipaddr.txt
271             echo "__bng_mux_net_cidr__" > /opt/config/bng_mux_net_cidr.txt
272             echo "__oam_cidr__" > /opt/config/oam_cidr.txt
273             echo "__mux_gw_net_cidr__" > /opt/config/mux_gw_net_cidr.txt
274             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
275             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
276             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
277             echo "__install_script_version__" > /opt/config/install_script_version.txt
278             echo "__cloud_env__" > /opt/config/cloud_env.txt
279             echo "__vpp_source_repo_url__" > /opt/config/vpp_source_repo_url.txt
280             echo "__vpp_source_repo_branch__" > /opt/config/vpp_source_repo_branch.txt
281             echo "__vpp_patch_url__" > /opt/config/vpp_patch_url.txt
282             echo "__hc2vpp_source_repo_url__" > /opt/config/hc2vpp_source_repo_url.txt
283             echo "__hc2vpp_source_repo_branch__" > /opt/config/hc2vpp_source_repo_branch.txt
284             echo "__hc2vpp_patch_url__" > /opt/config/hc2vpp_patch_url.txt
285
286             # Download and run install script
287             curl -k __repo_url_blob__/org.onap.demo/vnfs/vcpe/__install_script_version__/v_gmux_install.sh -o /opt/v_gmux_install.sh
288             cd /opt
289             chmod +x v_gmux_install.sh
290             ./v_gmux_install.sh
291