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