e0b6da49b6e0bb6b87710d23617f6833c494a427
[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: vBRG name
82     description: Name of the vBRG
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   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   sdnc_ip:
120     type: string
121     label: SDNC ip address
122     description: SDNC ip address used to set NAT
123
124 #############
125 #           #
126 # RESOURCES #
127 #           #
128 #############
129
130 resources:
131
132   random-str:
133     type: OS::Heat::RandomString
134     properties:
135       length: 4
136
137   my_keypair:
138     type: OS::Nova::KeyPair
139     properties:
140       name:
141         str_replace:
142           template: base_rand
143           params:
144             base: { get_param: key_name }
145             rand: { get_resource: random-str }
146       public_key: { get_param: pub_key }
147       save_private_key: false
148
149   #vbrgemu_private_network:
150   #  type: OS::Neutron::Net
151   #  properties:
152   #    name: { get_param: vbrgemu_private_net_id }
153
154   #vbrgemu_private_subnet:
155   #  type: OS::Neutron::Subnet
156   #  properties:
157   #    name: { get_param: vbrgemu_private_net_id }
158   #    network_id: { get_resource: vbrgemu_private_network }
159   #    cidr: { get_param: vbrgemu_private_net_cidr }
160
161   # Virtual BRG Emulator Instantiation
162   # 0_port should get IP address from DHCP discover through vBNG once the VNF is running
163   vbrgemu_private_0_port:
164     type: OS::Neutron::Port
165     properties:
166       network: { get_param: vbrgemu_bng_private_net_id }
167    #    fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }}]
168   ##    fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }, "ip_address": { get_param: vbrgemu_private_ip_0 }}]
169
170   #vbrgemu_private_1_port:
171   #  type: OS::Neutron::Port
172   #  properties:
173   #    network: { get_resource: vbrgemu_private_network }
174   #    fixed_ips: [{"subnet": { get_resource: vbrgemu_private_subnet }, "ip_address": { get_param: vbrgemu_private_ip_1 }}]
175
176   vbrgemu_0:
177     type: OS::Nova::Server
178     properties:
179       image: { get_param: vcpe_image_name }
180       flavor: { get_param: vcpe_flavor_name }
181       name: { get_param: vbrgemu_name_0 }
182       key_name: { get_resource: my_keypair }
183       networks:
184         - network: { get_param: public_net_id }
185         - port: { get_resource: vbrgemu_private_0_port }
186         #- port: { get_resource: vbrgemu_private_1_port }
187       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
188       user_data_format: RAW
189       user_data:
190         str_replace:
191           params:
192            # __brgemu_net_ipaddr__: { get_param: vbrgemu_private_ip_1 }
193            # __brgemu_cidr__: { get_param: vbrgemu_private_net_cidr }
194             __brgemu_bng_private_net_cidr__: { get_param: vbrgemu_bng_private_net_cidr }
195             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
196             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
197             __script_version__ : { get_param: script_version }
198             __cloud_env__ : { get_param: cloud_env }
199             __sdnc_ip__ : { get_param: sdnc_ip }
200             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
201           template: |
202             #!/bin/bash
203
204             # Create configuration files
205             mkdir /opt/config
206             #echo "__brgemu_net_ipaddr__" > /opt/config/brgemu_net_ipaddr.txt
207             #echo "__brgemu_cidr__" > /opt/config/brgemu_net_cidr.txt
208             echo "__brgemu_bng_private_net_cidr__" > /opt/config/brgemu_bng_private_net_cidr.txt
209             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
210             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
211             echo "__script_version__" > /opt/config/script_version.txt
212             echo "__cloud_env__" > /opt/config/cloud_env.txt
213             echo "__sdnc_ip__" > /opt/config/sdnc_ip.txt
214             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
215
216             # Download and run install script
217             apt-get -y install unzip
218             if [[ "__script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
219             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
220             unzip -j /opt/vcpe-scripts-__script_version__.zip -d /opt v_brgemu_install.sh
221             cd /opt
222             chmod +x v_brgemu_install.sh
223             ./v_brgemu_install.sh