Add scripts to bind nic and set ip
[demo.git] / heat / vCPE / vbrgemu / base_vcpe_vbrgemu_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 vBRG Emulator (vBRGEMU) for ONAP
28
29 #######################################################################
30 #                                                                     #
31 # PARAMETERS                                                                                                #
32 #                                                                     #
33 #     0_port should get IP address from DHCP discover through vBNG    #
34 #     DCAE is not monitoring the BRGEMULATOR                          #
35 #######################################################################
36
37 parameters:
38   vcpe_image_name:
39     type: string
40     label: Image name or ID
41     description: Image to be used for compute instance
42   vcpe_flavor_name:
43     type: string
44     label: Flavor
45     description: Type of instance (flavor) to be used
46   public_net_id:
47     type: string
48     label: Public network name or ID
49     description: Public network that enables remote connection to VNF
50   vbrgemu_bng_private_net_id:
51     type: string
52     label: vBNG private network name or ID
53     description: Private network that connects vBRGEMU to vBNG
54   vbrgemu_bng_private_net_cidr:
55     type: string
56     label: vBNG IN private network CIDR
57     description: The CIDR of the input side of vBNG private network
58   vbrgemu_private_net_id:
59     type: string
60     label: vBRGEMU Home private network name or ID
61     description: Private network that connects vBRGEMU to local devices
62   vbrgemu_private_net_cidr:
63     type: string
64     label: vBRGEMU Home private network CIDR
65     description: The CIDR of the input side of vBRGEMU Home private network
66   vbrgemu_private_ip_0:
67     type: string
68     label: vGW private IP address
69     description: Private IP address towards the BRGEMU-BNG network
70   vbrgemu_private_ip_1:
71     type: string
72     label: vGW private IP address
73     description: Private IP address towards the BRGEMU private network
74   vbrgemu_name_0:
75     type: string
76     label: vGW  name
77     description: Name of the vGW
78   vnf_id:
79     type: string
80     label: VNF ID
81     description: The VNF ID is provided by ONAP
82   vf_module_id:
83     type: string
84     label: vCPE module ID
85     description: The vCPE Module ID is provided by ONAP
86   key_name:
87     type: string
88     label: Key pair name
89     description: Public/Private key pair name
90   pub_key:
91     type: string
92     label: Public key
93     description: Public key to be installed on the compute instance
94   repo_url_blob:
95     type: string
96     label: Repository URL
97     description: URL of the repository that hosts the demo packages
98   repo_url_artifacts:
99     type: string
100     label: Repository URL
101     description: URL of the repository that hosts the demo packages
102   install_script_version:
103     type: string
104     label: Installation script version number
105     description: Version number of the scripts that install the vFW demo app
106   demo_artifacts_version:
107     type: string
108     label: Artifacts version used in demo vnfs
109     description: Artifacts (jar, tar.gz) version used in demo vnfs
110   cloud_env:
111     type: string
112     label: Cloud environment
113     description: Cloud environment (e.g., openstack, rackspace)
114   vpp_source_repo_url:
115     type: string
116     label: VPP Source Git Repo
117     description: URL for VPP source codes
118   vpp_source_repo_branch:
119     type: string
120     label: VPP Source Git Branch
121     description: Git Branch for the VPP source codes
122   hc2vpp_source_repo_url:
123     type: string
124     label: Honeycomb Source Git Repo
125     description: URL for Honeycomb source codes
126   hc2vpp_source_repo_branch:
127     type: string
128     label: Honeycomb Source Git Branch
129     description: Git Branch for the Honeycomb source codes
130   vpp_patch_url:
131     type: string
132     label: VPP Patch URL
133     description: URL for VPP patch for vBRG Emulator
134   sdnc_ip:
135     type: string
136     label: SDNC ip address
137     description: SDNC ip address uesd to set NAT
138
139 #############
140 #           #
141 # RESOURCES #
142 #           #
143 #############
144
145 resources:
146
147   random-str:
148     type: OS::Heat::RandomString
149     properties:
150       length: 4
151
152   my_keypair:
153     type: OS::Nova::KeyPair
154     properties:
155       name:
156         str_replace:
157           template: base_rand
158           params:
159             base: { get_param: key_name }
160             rand: { get_resource: random-str }
161       public_key: { get_param: pub_key }
162       save_private_key: false
163
164   vbrgemu_private_network:
165     type: OS::Neutron::Net
166     properties:
167       name: { get_param: vbrgemu_private_net_id }
168
169   vbrgemu_private_subnet:
170     type: OS::Neutron::Subnet
171     properties:
172       name: { get_param: vbrgemu_private_net_id }
173       network_id: { get_resource: vbrgemu_private_network }
174       cidr: { get_param: vbrgemu_private_net_cidr }
175
176   # Virtual BRG Emulator Instantiation
177   # 0_port should get IP address from DHCP discover through vBNG once the VNF is running
178   vbrgemu_private_0_port:
179     type: OS::Neutron::Port
180     properties:
181       network: { get_param: vbrgemu_bng_private_net_id }
182       fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_net_id }, "ip_address": { get_param: vbrgemu_private_ip_0 }}]
183
184   vbrgemu_private_1_port:
185     type: OS::Neutron::Port
186     properties:
187       network: { get_resource: vbrgemu_private_network }
188       fixed_ips: [{"subnet": { get_resource: vbrgemu_private_subnet }, "ip_address": { get_param: vbrgemu_private_ip_1 }}]
189
190   vbrgemu_0:
191     type: OS::Nova::Server
192     properties:
193       image: { get_param: vcpe_image_name }
194       flavor: { get_param: vcpe_flavor_name }
195       name: { get_param: vbrgemu_name_0 }
196       key_name: { get_resource: my_keypair }
197       networks:
198         - network: { get_param: public_net_id }
199         - port: { get_resource: vbrgemu_private_0_port }
200         - port: { get_resource: vbrgemu_private_1_port }
201       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
202       user_data_format: RAW
203       user_data:
204         str_replace:
205           params:
206             __brgemu_net_ipaddr__: { get_param: vbrgemu_private_ip_1 }
207             __brgemu_cidr__: { get_param: vbrgemu_private_net_cidr }
208             __brgemu_bng_private_net_cidr__: { get_param: vbrgemu_bng_private_net_cidr }
209             __repo_url_blob__ : { get_param: repo_url_blob }
210             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
211             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
212             __install_script_version__ : { get_param: install_script_version }
213             __cloud_env__ : { get_param: cloud_env }
214             __vpp_source_repo_url__ : { get_param: vpp_source_repo_url }
215             __vpp_source_repo_branch__ : { get_param: vpp_source_repo_branch }
216             __hc2vpp_source_repo_url__ : { get_param: hc2vpp_source_repo_url }
217             __hc2vpp_source_repo_branch__ : { get_param: hc2vpp_source_repo_branch }
218             __vpp_patch_url__ : { get_param: vpp_patch_url }
219             __sdnc_ip__ : { get param: sdnc_ip }
220           template: |
221             #!/bin/bash
222
223             # Create configuration files
224             mkdir /opt/config
225             echo "__brgemu_net_ipaddr__" > /opt/config/brgemu_net_ipaddr.txt
226             echo "__brgemu_cidr__" > /opt/config/brgemu_net_cidr.txt
227             echo "__brgemu_bng_private_net_cidr__" > /opt/config/brgemu_bng_private_net_cidr.txt
228             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
229             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
230             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
231             echo "__install_script_version__" > /opt/config/install_script_version.txt
232             echo "__cloud_env__" > /opt/config/cloud_env.txt
233             echo "__vpp_source_repo_url__" > /opt/config/vpp_source_repo_url.txt
234             echo "__vpp_source_repo_branch__" > /opt/config/vpp_source_repo_branch.txt
235             echo "__hc2vpp_source_repo_url__" > /opt/config/hc2vpp_source_repo_url.txt
236             echo "__hc2vpp_source_repo_branch__" > /opt/config/hc2vpp_source_repo_branch.txt
237             echo "__vpp_patch_url__" > /opt/config/vpp_patch_url.txt
238             echo "__sdnc_ip__" > /opt/config/ip.txt
239
240             # Download and run install script
241             curl -k __repo_url_blob__/org.onap.demo/vnfs/vcpe/__install_script_version__/v_brgemu_install.sh -o /opt/v_brgemu_install.sh
242             cd /opt
243             chmod +x v_brgemu_install.sh
244             ./v_brgemu_install.sh