Merge "Update portal_vm_init.sh to move logback.xml"
[demo.git] / heat / vCPE / vgw / base_vcpe_vgw_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 vGateway (vG) 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   mux_gw_private_net_id:
49     type: string
50     label: vGMUX private network name or ID
51     description: Private network that connects vGMUX to vGWs
52   mux_gw_private_net_cidr:
53     type: string
54     label: vGMUX private network CIDR
55     description: The CIDR of the vGMUX private network
56   onap_private_net_id:
57     type: string
58     label: ONAP management network name or ID
59     description: Private network that connects ONAP components and the VNF
60   onap_private_subnet_id:
61     type: string
62     label: ONAP management sub-network name or ID
63     description: Private sub-network that connects ONAP components and the VNF
64   onap_private_net_cidr:
65     type: string
66     label: ONAP private network CIDR
67     description: The CIDR of the protected private network
68   cpe_public_net_id:
69     type: string
70     label: vCPE network that emulates internetmanagement name or ID
71     description: Private network that connects vGW to emulated internet
72   cpe_public_net_cidr:
73     type: string
74     label: vCPE public network CIDR
75     description: The CIDR of the vCPE public
76   vgw_private_ip_0:
77     type: string
78     label: vGW private IP address towards the vGMUX
79     description: Private IP address that is assigned to the vGW to communicate with vGMUX
80   vgw_private_ip_1:
81     type: string
82     label: vGW private IP address towards the ONAP management network
83     description: Private IP address that is assigned to the vGW to communicate with ONAP components
84   vgw_private_ip_2:
85     type: string
86     label: vGW private IP address towards the vCPE public network
87     description: Private IP address that is assigned to the vGW to communicate with vCPE public network
88   vgw_name_0:
89     type: string
90     label: vGW  name
91     description: Name of the vGW
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
137 #############
138 #           #
139 # RESOURCES #
140 #           #
141 #############
142
143 resources:
144
145   random-str:
146     type: OS::Heat::RandomString
147     properties:
148       length: 4
149
150   my_keypair:
151     type: OS::Nova::KeyPair
152     properties:
153       name:
154         str_replace:
155           template: base_rand
156           params:
157             base: { get_param: key_name }
158             rand: { get_resource: random-str }
159       public_key: { get_param: pub_key }
160       save_private_key: false
161
162   # Virtual GW Instantiation
163   #   mux_gw_private_net created by mux heat template
164   #   cpe_public_net created by infra heat template (vDNS)
165   vgw_private_0_port:
166     type: OS::Neutron::Port
167     properties:
168       network: { get_param: mux_gw_private_net_id }
169       fixed_ips: [{"subnet": { get_param: mux_gw_private_net_id }, "ip_address": { get_param: vgw_private_ip_0 }}]
170
171   vgw_private_1_port:
172     type: OS::Neutron::Port
173     properties:
174       network: { get_param: onap_private_net_id }
175       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vgw_private_ip_1 }}]
176
177   vgw_private_2_port:
178     type: OS::Neutron::Port
179     properties:
180       network: { get_param: cpe_public_net_id}
181       fixed_ips: [{"subnet": { get_param: cpe_public_net_id }, "ip_address": { get_param: vgw_private_ip_2 }}]
182
183   vgw_0:
184     type: OS::Nova::Server
185     properties:
186       image: { get_param: vcpe_image_name }
187       flavor: { get_param: vcpe_flavor_name }
188       name: { get_param: vgw_name_0 }
189       key_name: { get_resource: my_keypair }
190       networks:
191         - network: { get_param: public_net_id }
192         - port: { get_resource: vgw_private_0_port }
193         - port: { get_resource: vgw_private_1_port }
194         - port: { get_resource: vgw_private_2_port }
195       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
196       user_data_format: RAW
197       user_data:
198         str_replace:
199           params:
200             __mux_gw_private_net_ipaddr__ : { get_param: vgw_private_ip_0 }
201             __oam_ipaddr__ : { get_param: vgw_private_ip_1 }
202             __oam_cidr__ : { get_param: onap_private_net_cidr }
203             __cpe_public_net_cidr__ : { get_param: cpe_public_net_cidr }
204             __mux_gw_private_net_cidr__ : { get_param: mux_gw_private_net_cidr }
205             __repo_url_blob__ : { get_param: repo_url_blob }
206             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
207             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
208             __install_script_version__ : { get_param: install_script_version }
209             __cloud_env__ : { get_param: cloud_env }
210           template: |
211             #!/bin/bash
212
213             # Create configuration files
214             mkdir /opt/config
215             echo "__oam_ipaddr__" > /opt/config/oam_ipaddr.txt
216             echo "__oam_cidr__" > /opt/config/oam_cidr.txt
217             echo "__cpe_public_net_cidr__" > /opt/config/cpe_public_net_cidr.txt
218             echo "__mux_gw_private_net_ipaddr__" > /opt/config/mux_gw_private_net_ipaddr.txt
219             echo "__mux_gw_private_net_cidr__" > /opt/config/mux_gw_private_net_cidr.txt
220             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
221             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
222             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
223             echo "__install_script_version__" > /opt/config/install_script_version.txt
224             echo "__cloud_env__" > /opt/config/cloud_env.txt
225
226             # Download and run install script
227             curl -k __repo_url_blob__/org.onap.demo/vnfs/vcpe/__install_script_version__/v_gw_install.sh -o /opt/v_gw_install.sh
228             cd /opt
229             chmod +x v_gw_install.sh
230             ./v_gw_install.sh
231