Clean up vCPE Heat templates
[demo.git] / heat / vCPE / vgmux / base_vcpe_vgmux_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 Infrastructue Metro vGMUX 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   bng_mux_private_net_id:
49     type: string
50     label: vBNG vGMUX private network name or ID
51     description: Private network that connects vBNG to vGMUX
52   mux_gw_private_net_id:
53     type: string
54     label: vCPE Public network name or ID
55     description: Private network that connects vGMUX to vGWs
56   mux_gw_private_net_cidr:
57     type: string
58     label: vGMUX private network CIDR
59     description: The CIDR of the vGMUX private network (should not be needed)
60   onap_private_net_id:
61     type: string
62     label: ONAP management network name or ID
63     description: Private network that connects ONAP components and the VNF
64   onap_private_subnet_id:
65     type: string
66     label: ONAP management sub-network name or ID
67     description: Private sub-network that connects ONAP components and the VNF
68   onap_private_net_cidr:
69     type: string
70     label: ONAP private network CIDR
71     description: The CIDR of the protected private network
72   vgmux_private_ip_0:
73     type: string
74     label: vGMUX private IP address towards the private network
75     description: Private IP address that is assigned to the vGMUX to communicate with the vBNG
76   vgmux_private_ip_1:
77     type: string
78     label: vGMUX private IP address towards the ONAP management network
79     description: Private IP address that is assigned to the vGMUX to communicate with ONAP components
80   vgmux_name_0:
81     type: string
82     label: vGMUX name
83     description: Name of the vGMUX
84   vnf_id:
85     type: string
86     label: VNF ID
87     description: The VNF ID is provided by ONAP
88   vf_module_id:
89     type: string
90     label: vCPE module ID
91     description: The vCPE Module ID is provided by ONAP
92   dcae_collector_ip:
93     type: string
94     label: DCAE collector IP address
95     description: IP address of the DCAE collector
96   dcae_collector_port:
97     type: string
98     label: DCAE collector port
99     description: Port of the DCAE collector
100   key_name:
101     type: string
102     label: Key pair name
103     description: Public/Private key pair name
104   pub_key:
105     type: string
106     label: Public key
107     description: Public key to be installed on the compute instance
108   repo_url_blob:
109     type: string
110     label: Repository URL
111     description: URL of the repository that hosts the demo packages
112   repo_url_artifacts:
113     type: string
114     label: Repository URL
115     description: URL of the repository that hosts the demo packages
116   install_script_version:
117     type: string
118     label: Installation script version number
119     description: Version number of the scripts that install the vFW demo app
120   demo_artifacts_version:
121     type: string
122     label: Artifacts version used in demo vnfs
123     description: Artifacts (jar, tar.gz) version used in demo vnfs
124   cloud_env:
125     type: string
126     label: Cloud environment
127     description: Cloud environment (e.g., openstack, rackspace)
128
129 #############
130 #           #
131 # RESOURCES #
132 #           #
133 #############
134
135 resources:
136
137   random-str:
138     type: OS::Heat::RandomString
139     properties:
140       length: 4
141
142   my_keypair:
143     type: OS::Nova::KeyPair
144     properties:
145       name:
146         str_replace:
147           template: base_rand
148           params:
149             base: { get_param: key_name }
150             rand: { get_resource: random-str }
151       public_key: { get_param: pub_key }
152       save_private_key: false
153
154   mux_gw_private_network:
155     type: OS::Neutron::Net
156     properties:
157       name: { get_param: mux_gw_private_net_id }
158
159   mux_gw_private_subnet:
160     type: OS::Neutron::Subnet
161     properties:
162       name: { get_param: mux_gw_private_net_id }
163       network_id: { get_resource: mux_gw_private_network }
164       cidr: { get_param: mux_gw_private_net_cidr }
165
166
167   # Virtual GMUX Instantiation
168   vgmux_private_0_port:
169     type: OS::Neutron::Port
170     properties:
171       network: { get_param: bng_mux_private_network }
172       fixed_ips: [{"subnet": { get_param: bng_mux_private_net_id}, "ip_address": { get_param: vgmux_private_ip_0 }}]
173
174   vgmux_private_1_port:
175     type: OS::Neutron::Port
176     properties:
177       network: { get_param: onap_private_net_id }
178       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vgmux_private_ip_1 }}]
179
180   vgmux_private_2_port:
181     type: OS::Neutron::Port
182     properties:
183       network: { get_resource: mux_gw_private_network }
184       #fixed_ips: [{"subnet": {  get_resource: mux_gw_private_subnet}, "ip_address": { get_param: mux_gw_private_ip_2 }}]
185
186   vgmux_0:
187     type: OS::Nova::Server
188     properties:
189       image: { get_param: vcpe_image_name }
190       flavor: { get_param: vcpe_flavor_name }
191       name: { get_param: vgmux_name_0 }
192       key_name: { get_resource: my_keypair }
193       networks:
194         - network: { get_param: public_net_id }
195         - port: { get_resource: vgmux_private_0_port }
196         - port: { get_resource: vgmux_private_1_port }
197         - port: { get_resource: vgmux_private_2_port }
198       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }}
199       user_data_format: RAW
200       user_data:
201         str_replace:
202           params:
203             __gmux_oam_int__ : { get_param: vgmux_private_ip_1 }
204             #__gmux_private_ipaddr__: { get_param: vgmux_private_ip_2 }
205             __local_private_ipaddr__: { get_param: vgmux_private_ip_0 }
206             __repo_url_blob__ : { get_param: repo_url_blob }
207             __repo_url_artifacts__ : { get_param: repo_url_artifacts }
208             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
209             __install_script_version__ : { get_param: install_script_version }
210             __cloud_env__ : { get_param: cloud_env }
211           template: |
212             #!/bin/bash
213
214             # Create configuration files
215             mkdir /opt/config
216             echo "__gmux_oam_int__" > /opt/config/gmux_oam_int.txt
217             echo "__gmux_private_ipaddr__" > /opt/config/gmux_private_ipaddr.txt
218             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
219             echo "__repo_url_blob__" > /opt/config/repo_url_blob.txt
220             echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt
221             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
222             echo "__install_script_version__" > /opt/config/install_script_version.txt
223             echo "__cloud_env__" > /opt/config/cloud_env.txt
224
225             # Download and run install script
226             curl -k __repo_url_blob__/org.openecomp.demo/vnfs/vgmux/__install_script_version__/v_dns_install.sh -o /opt/v_dns_install.sh
227             cd /opt
228             chmod +x v_dns_install.sh
229             ./v_dns_install.sh
230