8a737ebfd5dc5a5c1f64fe748ed83e52dda42163
[demo.git] / heat / vCPE / vbrgemu / base_vcpe_vbrgemu.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)
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_subnet_id:
55     type: string
56     label: vBNG private sub-network name or ID
57     description: vBNG private sub-network name or ID
58   vbrgemu_bng_private_net_cidr:
59     type: string
60     label: vBNG IN private network CIDR
61     description: The CIDR of the input side of vBNG private network
62  # vbrgemu_private_net_id:
63  #   type: string
64  #   label: vBRGEMU Home private network name or ID
65  #   description: Private network that connects vBRGEMU to local devices
66   #vbrgemu_private_net_cidr:
67   #  type: string
68   #  label: vBRGEMU Home private network CIDR
69   #  description: The CIDR of the input side of vBRGEMU Home private network
70 ##  vbrgemu_private_ip_0:
71 ##    type: string
72 ##    label: vGW private IP address
73 ##    description: Private IP address towards the BRGEMU-BNG network
74 ##    VPP will use DHCP so does not need to be provided by preload
75   #vbrgemu_private_ip_1:
76   #  type: string
77   #  label: vGW private IP address
78   #  description: Private IP address towards the BRGEMU private network
79   vbrgemu_name_0:
80     type: string
81     label: vGW  name
82     description: Name of the vGW
83   vnf_id:
84     type: string
85     label: VNF ID
86     description: The VNF ID is provided by ONAP
87   vf_module_id:
88     type: string
89     label: vCPE module ID
90     description: The vCPE Module ID is provided by ONAP
91   key_name:
92     type: string
93     label: Key pair name
94     description: Public/Private key pair name
95   pub_key:
96     type: string
97     label: Public key
98     description: Public key to be installed on the compute instance
99   repo_url_artifacts:
100     type: string
101     label: Repository URL
102     description: URL of the repository that hosts the demo packages
103   install_script_version:
104     type: string
105     label: Installation script version number
106     description: Version number of the scripts that install the vFW demo app
107   demo_artifacts_version:
108     type: string
109     label: Artifacts version used in demo vnfs
110     description: Artifacts (jar, tar.gz) version used in demo vnfs
111   nexus_artifact_repo:
112     type: string
113     description: Root URL for the Nexus repository for Maven artifacts.
114     default: "https://nexus.onap.org"
115   cloud_env:
116     type: string
117     label: Cloud environment
118     description: Cloud environment (e.g., openstack, rackspace)
119   vpp_source_repo_url:
120     type: string
121     label: VPP Source Git Repo
122     description: URL for VPP source codes
123   vpp_source_repo_release_tag:
124     type: string
125     label: VPP Source Git Release Tag
126     description: Git Release Tag for the VPP source codes
127   hc2vpp_source_repo_url:
128     type: string
129     label: Honeycomb Source Git Repo
130     description: URL for Honeycomb source codes
131   hc2vpp_source_repo_release_tag:
132     type: string
133     label: Honeycomb Source Git Release Tag
134     description: Git Release Tag for the Honeycomb source codes
135   vpp_patch_url:
136     type: string
137     label: VPP Patch URL
138     description: URL for VPP patch for vBRG Emulator
139   sdnc_ip:
140     type: string
141     label: SDNC ip address
142     description: SDNC ip address used to set NAT
143   compile_state:
144     type: string
145     label: Compile State
146     description: State to compile code or not
147 #############
148 #           #
149 # RESOURCES #
150 #           #
151 #############
152
153 resources:
154
155   random-str:
156     type: OS::Heat::RandomString
157     properties:
158       length: 4
159
160   my_keypair:
161     type: OS::Nova::KeyPair
162     properties:
163       name:
164         str_replace:
165           template: base_rand
166           params:
167             base: { get_param: key_name }
168             rand: { get_resource: random-str }
169       public_key: { get_param: pub_key }
170       save_private_key: false
171
172   #vbrgemu_private_network:
173   #  type: OS::Neutron::Net
174   #  properties:
175   #    name: { get_param: vbrgemu_private_net_id }
176
177   #vbrgemu_private_subnet:
178   #  type: OS::Neutron::Subnet
179   #  properties:
180   #    name: { get_param: vbrgemu_private_net_id }
181   #    network_id: { get_resource: vbrgemu_private_network }
182   #    cidr: { get_param: vbrgemu_private_net_cidr }
183
184   # Virtual BRG Emulator Instantiation
185   # 0_port should get IP address from DHCP discover through vBNG once the VNF is running
186   vbrgemu_private_0_port:
187     type: OS::Neutron::Port
188     properties:
189       network: { get_param: vbrgemu_bng_private_net_id }
190       fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }}]
191   ##    fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }, "ip_address": { get_param: vbrgemu_private_ip_0 }}]
192
193   #vbrgemu_private_1_port:
194   #  type: OS::Neutron::Port
195   #  properties:
196   #    network: { get_resource: vbrgemu_private_network }
197   #    fixed_ips: [{"subnet": { get_resource: vbrgemu_private_subnet }, "ip_address": { get_param: vbrgemu_private_ip_1 }}]
198
199   vbrgemu_0:
200     type: OS::Nova::Server
201     properties:
202       image: { get_param: vcpe_image_name }
203       flavor: { get_param: vcpe_flavor_name }
204       name: { get_param: vbrgemu_name_0 }
205       key_name: { get_resource: my_keypair }
206       networks:
207         - network: { get_param: public_net_id }
208         - port: { get_resource: vbrgemu_private_0_port }
209         #- port: { get_resource: vbrgemu_private_1_port }
210       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
211       user_data_format: RAW
212       user_data:
213         str_replace:
214           params:
215            # __brgemu_net_ipaddr__: { get_param: vbrgemu_private_ip_1 }
216            # __brgemu_cidr__: { get_param: vbrgemu_private_net_cidr }
217             __brgemu_bng_private_net_cidr__: { get_param: vbrgemu_bng_private_net_cidr }
218             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
219             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
220             __install_script_version__ : { get_param: install_script_version }
221             __cloud_env__ : { get_param: cloud_env }
222             __vpp_source_repo_url__ : { get_param: vpp_source_repo_url }
223             __vpp_source_repo_release_tag__ : { get_param: vpp_source_repo_release_tag }
224             __hc2vpp_source_repo_url__ : { get_param: hc2vpp_source_repo_url }
225             __hc2vpp_source_repo_release_tag__ : { get_param: hc2vpp_source_repo_release_tag }
226             __vpp_patch_url__ : { get_param: vpp_patch_url }
227             __sdnc_ip__ : { get_param: sdnc_ip }
228             __compile_state__ : { get_param: compile_state }
229           template: |
230             #!/bin/bash
231
232             # Create configuration files
233             mkdir /opt/config
234             #echo "__brgemu_net_ipaddr__" > /opt/config/brgemu_net_ipaddr.txt
235             #echo "__brgemu_cidr__" > /opt/config/brgemu_net_cidr.txt
236             echo "__brgemu_bng_private_net_cidr__" > /opt/config/brgemu_bng_private_net_cidr.txt
237             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
238             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
239             echo "__install_script_version__" > /opt/config/install_script_version.txt
240             echo "__cloud_env__" > /opt/config/cloud_env.txt
241             echo "__vpp_source_repo_url__" > /opt/config/vpp_source_repo_url.txt
242             echo "__vpp_source_repo_release_tag__" > /opt/config/vpp_source_repo_release_tag.txt
243             echo "__hc2vpp_source_repo_url__" > /opt/config/hc2vpp_source_repo_url.txt
244             echo "__hc2vpp_source_repo_release_tag__" > /opt/config/hc2vpp_source_repo_release_tag.txt
245             echo "__vpp_patch_url__" > /opt/config/vpp_patch_url.txt
246             echo "__sdnc_ip__" > /opt/config/sdnc_ip.txt
247             echo "__compile_state__" > /opt/config/compile_state.txt
248
249             # Download and run install script
250             apt-get -y install unzip
251             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
252             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=__install_script_version__" -o /opt/vcpe-scripts-__install_script_version__.zip
253             unzip -j /opt/vcpe-scripts-__install_script_version__.zip -d /opt v_brgemu_install.sh
254             cd /opt
255             chmod +x v_brgemu_install.sh
256             ./v_brgemu_install.sh