b6ef5346adf5f8c898da3620a24c78062b7c87ca
[demo.git] / heat / vFW_NextGen / templates / vpg.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4 #
5 #
6 # Copyright (c) 2018 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 that deploys the vFirewall Traffic Generator demo app for ONAP
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36   image_name:
37     type: string
38     label: Image name or ID
39     description: Image to be used for compute instance
40   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   unprotected_private_net_id:
49     type: string
50     label: Unprotected private network name or ID
51     description: Private network that connects vPacketGenerator with vFirewall
52   unprotected_private_subnet_id:
53     type: string
54     label: Unprotected private sub-network name or ID
55     description: Private subnetwork for the unprotected network
56   unprotected_private_net_cidr:
57     type: string
58     label: Unprotected private network CIDR
59     description: The CIDR of the unprotected private network
60   protected_private_net_cidr:
61     type: string
62     label: Protected private network CIDR
63     description: The CIDR of the protected private network
64   onap_private_net_id:
65     type: string
66     label: ONAP management network name or ID
67     description: Private network that connects ONAP components and the VNF
68   onap_private_subnet_id:
69     type: string
70     label: ONAP management sub-network name or ID
71     description: Private sub-network that connects ONAP components and the VNF
72   onap_private_net_cidr:
73     type: string
74     label: ONAP private network CIDR
75     description: The CIDR of the protected private network
76   vfw_private_ip_0:
77     type: string
78     label: vFirewall private IP address towards the unprotected network
79     description: Private IP address that is assigned to the vFirewall to communicate with the vPacketGenerator
80   vsn_private_ip_0:
81     type: string
82     label: vSink private IP address towards the protected network
83     description: Private IP address that is assigned to the vSink to communicate with the vFirewall
84   vpg_private_ip_0:
85     type: string
86     label: vPacketGenerator private IP address towards the unprotected network
87     description: Private IP address that is assigned to the vPacketGenerator to communicate with the vFirewall
88   vpg_private_ip_1:
89     type: string
90     label: vPacketGenerator private IP address towards the ONAP management network
91     description: Private IP address that is assigned to the vPacketGenerator to communicate with ONAP components
92   vpg_name_0:
93     type: string
94     label: vPacketGenerator name
95     description: Name of the vPacketGenerator
96   vnf_id:
97     type: string
98     label: VNF ID
99     description: The VNF ID is provided by ONAP
100   vf_module_id:
101     type: string
102     label: VF Module ID
103     description: The VF Module ID is provided by ONAP
104   key_name:
105     type: string
106     label: Key pair name
107     description: Public/Private key pair name
108   install_script_version:
109     type: string
110     label: Installation script version number
111     description: Version number of the scripts that install the vFW demo app
112   demo_artifacts_version:
113     type: string
114     label: Artifacts version used in demo vnfs
115     description: Artifacts (jar, tar.gz) version used in demo vnfs
116   nexus_artifact_repo:
117     type: string
118     description: Root URL for the Nexus repository for Maven artifacts.
119     default: "https://nexus.onap.org"
120   cloud_env:
121     type: string
122     label: Cloud environment
123     description: Cloud environment (e.g., openstack, rackspace)
124   sec_group:
125     type: string
126     description: ONAP Security Group
127   sdnc_model_name:
128     type: string
129     description: SDNC Model Name metatada
130   sdnc_model_version:
131     type: string
132     description: SDNC Model Version metatada
133   sdnc_artifact_name:
134     type: string
135     description: SDNC Artifact Name metatada
136
137
138 #############
139 #           #
140 # RESOURCES #
141 #           #
142 #############
143
144 resources:
145
146   # Virtual Packet Generator instantiation
147   vpg_private_0_port:
148     type: OS::Neutron::Port
149     properties:
150       network: { get_param: unprotected_private_net_id }
151       fixed_ips: [{"subnet": { get_param: unprotected_private_subnet_id }, "ip_address": { get_param: vpg_private_ip_0 }}]
152       security_groups:
153       - { get_param: sec_group }
154
155   vpg_private_1_port:
156     type: OS::Neutron::Port
157     properties:
158       network: { get_param: onap_private_net_id }
159       fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vpg_private_ip_1 }}]
160       security_groups:
161       - { get_param: sec_group }
162
163   vpg_0:
164     type: OS::Nova::Server
165     properties:
166       image: { get_param: image_name }
167       flavor: { get_param: flavor_name }
168       name: { get_param: vpg_name_0 }
169       key_name: { get_param: key_name }
170       networks:
171         - network: { get_param: public_net_id }
172         - port: { get_resource: vpg_private_0_port }
173         - port: { get_resource: vpg_private_1_port }
174       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }, sdnc_model_name: { get_param: sdnc_model_name }, sdnc_model_version: { get_param: sdnc_model_version }, sdnc_artifact_name: { get_param: sdnc_artifact_name }}
175       user_data_format: RAW
176       user_data:
177         str_replace:
178           params:
179             __fw_ipaddr__: { get_param: vfw_private_ip_0 }
180             __protected_net_cidr__: { get_param: protected_private_net_cidr }
181             __sink_ipaddr__: { get_param: vsn_private_ip_0 }
182             __demo_artifacts_version__ : { get_param: demo_artifacts_version }
183             __install_script_version__ : { get_param: install_script_version }
184             __vpg_private_ip_0__ : { get_param: vpg_private_ip_0 }
185             __vpg_private_ip_1__ : { get_param: vpg_private_ip_1 }
186             __unprotected_private_net_cidr__ : { get_param: unprotected_private_net_cidr }
187             __onap_private_net_cidr__ : { get_param: onap_private_net_cidr }
188             __cloud_env__ : { get_param: cloud_env }
189             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
190           template: |
191             #!/bin/bash
192
193             # Create configuration files
194             mkdir /opt/config
195             echo "__fw_ipaddr__" > /opt/config/fw_ipaddr.txt
196             echo "__protected_net_cidr__" > /opt/config/protected_net_cidr.txt
197             echo "__sink_ipaddr__" > /opt/config/sink_ipaddr.txt
198             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
199             echo "__install_script_version__" > /opt/config/install_script_version.txt
200             echo "__vpg_private_ip_0__" > /opt/config/vpg_private_ip_0.txt
201             echo "__vpg_private_ip_1__" > /opt/config/vpg_private_ip_1.txt
202             echo "__unprotected_private_net_cidr__" > /opt/config/unprotected_private_net_cidr.txt
203             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
204             echo "__cloud_env__" > /opt/config/cloud_env.txt
205             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
206
207             # Download and run install script
208             apt-get update
209             apt-get -y install unzip
210             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
211             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vfw&a=vfw-scripts&e=zip&v=__install_script_version__" -o /opt/vfw-scripts-__install_script_version__.zip
212             unzip -j /opt/vfw-scripts-__install_script_version__.zip -d /opt v_packetgen_install.sh
213             cd /opt
214             chmod +x v_packetgen_install.sh
215             ./v_packetgen_install.sh