Updatd after network review 2017-08-03
[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_subnet_id:
53     type: string
54     label: vGMUX private sub-network name or ID
55     description: Private sub-network that connects vGMUX to vGWs (IS THIS NEEDED ?) 
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   cpe_public_net_id:
65     type: string
66     label: vCPE network that emulates internetmanagement name or ID
67     description: Private network that connects vGW to emulated internet 
68   cpe_public_subnet_id:
69     type: string
70     label: vCPE sub-network that emulates internetmanagement name or ID
71     description: Private network that connects vGW to emulated internet 
72   onap_private_net_cidr:
73     type: string
74     label: ONAP private network CIDR
75     description: The CIDR of the protected private network
76   vgw_private_ip_0:
77     type: string
78     label: vGW IN private IP address
79     description: Private IP address that is assigned to the vGW IN (SHOULD NOT BE NEEDED)
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_name_0:
85     type: string
86     label: vGW  name
87     description: Name of the vGW
88   vnf_id:
89     type: string
90     label: VNF ID
91     description: The VNF ID is provided by ONAP
92   vf_module_id:
93     type: string
94     label: vCPE module ID
95     description: The vCPE Module ID is provided by ONAP
96   dcae_collector_ip:
97     type: string
98     label: DCAE collector IP address
99     description: IP address of the DCAE collector
100   dcae_collector_port:
101     type: string
102     label: DCAE collector port
103     description: Port of the DCAE collector
104   key_name:
105     type: string
106     label: Key pair name
107     description: Public/Private key pair name
108   pub_key:
109     type: string
110     label: Public key
111     description: Public key to be installed on the compute instance
112   repo_url_blob:
113     type: string
114     label: Repository URL
115     description: URL of the repository that hosts the demo packages
116   repo_url_artifacts:
117     type: string
118     label: Repository URL
119     description: URL of the repository that hosts the demo packages
120   install_script_version:
121     type: string
122     label: Installation script version number
123     description: Version number of the scripts that install the vFW demo app
124   demo_artifacts_version:
125     type: string
126     label: Artifacts version used in demo vnfs
127     description: Artifacts (jar, tar.gz) version used in demo vnfs
128   cloud_env:
129     type: string
130     label: Cloud environment
131     description: Cloud environment (e.g., openstack, rackspace)
132
133 #############
134 #           #
135 # RESOURCES #
136 #           #
137 #############
138
139 resources:
140
141   random-str:
142     type: OS::Heat::RandomString
143     properties:
144       length: 4
145
146   my_keypair:
147     type: OS::Nova::KeyPair
148     properties:
149       name:
150         str_replace:
151           template: base_rand
152           params:
153             base: { get_param: key_name }
154             rand: { get_resource: random-str }
155       public_key: { get_param: pub_key }
156       save_private_key: false
157
158
159
160   # Virtual GW Instantiation
161   #   mux_gw_private_net created by mux heat template
162   #   cpe_public_net created by infra heat template (vDNS)
163   vgw_private_0_port:
164     type: OS::Neutron::Port
165     properties:
166       network: { get_param: mux_gw_private_net_id}
167   #    fixed_ips: [{"subnet": { get_param: mux_gw_private_subnet_id}, "ip_address": { get_param: vgw_private_ip_0 }}]
168
169   vgmux_private_1_port:
170     type: OS::Neutron::Port
171     properties:
172       network: { get_param: onap_private_net_id }
173       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vgw_private_ip_1 }}]
174
175   vgmux_private_2_port:
176     type: OS::Neutron::Port
177     properties:
178       network: { get_param: cpe_public_net_id}
179   #fixed_ips: [{"subnet": {  get_param: cpe_public_subnet_id}, "ip_address": { get_param: vgw_private_ip_2 }}]
180
181   vgmux_0:
182     type: OS::Nova::Server
183     properties:
184       image: { get_param: vcpe_image_name }
185       flavor: { get_param: vcpe_flavor_name }
186       name: { get_param: vgmux_name_0 }
187       key_name: { get_resource: my_keypair }
188       networks:
189         - network: { get_param: public_net_id }
190         - port: { get_resource: vgw_private_0_port }
191         - port: { get_resource: vgw_private_1_port }
192         - port: { get_resource: vgw_private_2_port }
193       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
194       user_data_format: RAW
195       user_data:
196         str_replace:
197           params:
198             __gmux_oam_int__ : { get_param: vgw_private_ip_1 }
199             __gmux_private_ipaddr__: { get_param: vgw_private_ip_2 }
200             __local_private_ipaddr__: { get_param: vgw_private_ip_1 }
201             __repo_url_blob__ : { get_param: repo_url_blob }
202             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
203             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
204             __install_script_version__ : { get_param: install_script_version }
205             __cloud_env__ : { get_param: cloud_env }
206           template: |
207             #!/bin/bash
208
209             # Create configuration files
210             mkdir /opt/config
211             echo "__gmux_oam_int__" > /opt/config/gw_oam_int.txt
212             echo "__gmux_private_ipaddr__" > /opt/config/gw_private_ipaddr.txt
213             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
214             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
215             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
216             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
217             echo "__install_script_version__" > /opt/config/install_script_version.txt
218             echo "__cloud_env__" > /opt/config/cloud_env.txt
219
220             # Download and run install script
221             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vgw/__install_script_version__/v_gw_install.sh -o /opt/v_gw_install.sh
222             cd /opt
223             chmod +x v_gw_install.sh
224             ./v_gw_install.sh
225