Fix VM names in vCPE env files
[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
115 #############
116 #           #
117 # RESOURCES #
118 #           #
119 #############
120
121 resources:
122
123   random-str:
124     type: OS::Heat::RandomString
125     properties:
126       length: 4
127
128   my_keypair:
129     type: OS::Nova::KeyPair
130     properties:
131       name:
132         str_replace:
133           template: base_rand
134           params:
135             base: { get_param: key_name }
136             rand: { get_resource: random-str }
137       public_key: { get_param: pub_key }
138       save_private_key: false
139
140   vbrgemu_private_network:
141     type: OS::Neutron::Net
142     properties:
143       name: { get_param: vbrgemu_private_net_id }
144
145   vbrgemu_private_subnet:
146     type: OS::Neutron::Subnet
147     properties:
148       name: { get_param: vbrgemu_private_net_id }
149       network_id: { get_resource: vbrgemu_private_network }
150       cidr: { get_param: vbrgemu_private_net_cidr }
151
152   # Virtual BRG Emulator Instantiation
153   # 0_port should get IP address from DHCP discover through vBNG once the VNF is running
154   vbrgemu_private_0_port:
155     type: OS::Neutron::Port
156     properties:
157       network: { get_param: vbrgemu_bng_private_net_id }
158       fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_net_id }, "ip_address": { get_param: vbrgemu_private_ip_0 }}]
159
160   vbrgemu_private_1_port:
161     type: OS::Neutron::Port
162     properties:
163       network: { get_resource: vbrgemu_private_network }
164       fixed_ips: [{"subnet": { get_resource: vbrgemu_private_subnet }, "ip_address": { get_param: vbrgemu_private_ip_1 }}]
165
166   vbrgemu_0:
167     type: OS::Nova::Server
168     properties:
169       image: { get_param: vcpe_image_name }
170       flavor: { get_param: vcpe_flavor_name }
171       name: { get_param: vbrgemu_name_0 }
172       key_name: { get_resource: my_keypair }
173       networks:
174         - network: { get_param: public_net_id }
175         - port: { get_resource: vbrgemu_private_0_port }
176         - port: { get_resource: vbrgemu_private_1_port }
177       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
178       user_data_format: RAW
179       user_data:
180         str_replace:
181           params:
182             __brgemu_net_ipaddr__: { get_param: vbrgemu_private_ip_1 }
183             __brgemu_cidr__: { get_param: vbrgemu_private_net_cidr }
184             __brgemu_bng_private_net_cidr__: { get_param: vbrgemu_bng_private_net_cidr }
185             __repo_url_blob__ : { get_param: repo_url_blob }
186             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
187             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
188             __install_script_version__ : { get_param: install_script_version }
189             __cloud_env__ : { get_param: cloud_env }
190           template: |
191             #!/bin/bash
192
193             # Create configuration files
194             mkdir /opt/config
195             echo "__brgemu_net_ipaddr__" > /opt/config/brgemu_net_ipaddr.txt
196             echo "__brgemu_cidr__" > /opt/config/brgemu_net_cidr.txt
197             echo "__brgemu_bng_private_net_cidr__" > /opt/config/brgemu_bng_private_net_cidr.txt
198             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
199             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
200             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
201             echo "__install_script_version__" > /opt/config/install_script_version.txt
202             echo "__cloud_env__" > /opt/config/cloud_env.txt
203
204             # Download and run install script
205             curl -k __repo_url_blob__/org.onap.demo/vnfs/vcpe/__install_script_version__/v_brgemu_install.sh -o /opt/v_brgemu_install.sh
206             cd /opt
207             chmod +x v_brgemu_install.sh
208             ./v_brgemu_install.sh