7a7ab306a96f7ec39ad96551099f6ca8e08a9e81
[demo.git] / heat / vLB_CDS / vdns.yaml
1 ##########################################################################
2 #
3 #==================LICENSE_START==========================================
4 #
5 #
6 # Copyright (c) 2019 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 a vDNS for ONAP
28
29 ##############
30 #            #
31 # PARAMETERS #
32 #            #
33 ##############
34
35 parameters:
36   vdns_image_name:
37     type: string
38     label: Image name or ID
39     description: Image to be used for compute instance
40   vdns_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   int_private_net_id:
49     type: string
50     label: vLoadBalancer private network name or ID
51     description: Private network that connects vLoadBalancer with vDNSs
52   int_private_subnet_id:
53     type: string
54     label: vLoadBalancer private subnet name or ID
55     description: Private subnet of the network that connects vLoadBalancer with vDNSs
56   onap_private_net_id:
57     type: string
58     label: ONAP management network name or ID
59     description: Private network that connects ONAP component 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 component and the VNF
64   vlb_private_net_cidr:
65     type: string
66     label: vLoadBalancer private network CIDR
67     description: The CIDR of the vLoadBalancer private network
68   onap_private_net_cidr:
69     type: string
70     label: ONAP private network CIDR
71     description: The CIDR of the protected private network
72   vlb_int_private_ip_0:
73     type: string
74     label: vLoadBalancer private IP address towards the private network
75     description: Private IP address that is assigned to the vLoadBalancer to communicate with the vDNSs
76   vlb_onap_private_ip_0:
77     type: string
78     label: vLoadBalancer private IP address towards the ONAP management network
79     description: Private IP address that is assigned to the vLoadBalancer to communicate with ONAP components
80   vlb_int_pktgen_private_ip_0:
81     type: string
82     label: vLoadBalancer private IP address towards the vPacketGen network
83     description: Private IP address that is assigned to the vLoadBalancer to communicate with vPacketGen
84   vdns_int_private_ip_0:
85     type: string
86     label: vDNS private IP address towards the private network
87     description: Private IP address that is assigned to the vDNS to communicate with the vLoadBalancer
88   vdns_onap_private_ip_0:
89     type: string
90     label: vDNS private IP address towards the ONAP management network
91     description: Private IP address that is assigned to the vDNS to communicate with ONAP components
92   vdns_name_0:
93     type: string
94     label: vDNS name
95     description: Name of the vDNS
96   vnf_id:
97     type: string
98     label: VNF ID
99     description: The VNF ID is provided by ONAP
100   vnf_name:
101     type: string
102     label: VNF NAME
103     description: The VNF NAME is provided by ONAP
104   vf_module_id:
105     type: string
106     label: vFirewall module ID
107     description: The vLoadBalancer Module ID is provided by ONAP
108   keypair:
109     type: string
110     label: Key pair name
111     description: Public/Private key pair name
112   install_script_version:
113     type: string
114     label: Installation script version number
115     description: Version number of the scripts that install the vLB/vDNS demo app
116   demo_artifacts_version:
117     type: string
118     label: Artifacts version used in demo vnfs
119     description: Artifacts (jar, tar.gz) version used in demo vnfs
120   nb_api_version:
121     type: string
122     label: Northbound API version
123     description: Version number of the health check and config APIs
124   cloud_env:
125     type: string
126     label: Cloud environment
127     description: Cloud environment (e.g., openstack, rackspace)
128   nexus_artifact_repo:
129     type: string
130     description: Root URL for the Nexus repository for Maven artifacts.
131   sec_group:
132     type: string
133     description: ONAP Security Group
134
135 #############
136 #           #
137 # RESOURCES #
138 #           #
139 #############
140
141 resources:
142
143   # NETWORK_ROLE: private
144   # VM_TYPE: vdns
145   vdns_0_int_private_port_0:
146     type: OS::Neutron::Port
147     properties:
148       network: { get_param: int_private_net_id }
149       fixed_ips: [{"subnet": { get_param: int_private_subnet_id }, "ip_address": { get_param: vdns_int_private_ip_0 }}]
150       security_groups:
151       - { get_param: sec_group }
152
153   # NETWORK_ROLE: onap_private
154   # VM_TYPE: vdns
155   vdns_0_onap_private_port_0:
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: vdns_onap_private_ip_0 }}]
160       security_groups:
161       - { get_param: sec_group }
162
163   # VM_TYPE: vdns
164   vdns_server_0:
165     type: OS::Nova::Server
166     properties:
167       image: { get_param: vdns_image_name }
168       flavor: { get_param: vdns_flavor_name }
169       name: { get_param: vdns_name_0 }
170       key_name: { get_param: keypair }
171       networks:
172         - network: { get_param: public_net_id }
173         - port: { get_resource: vdns_0_int_private_port_0 }
174         - port: { get_resource: vdns_0_onap_private_port_0 }
175       metadata:
176         vnf_id: { get_param: vnf_id }
177         vf_module_id: { get_param: vf_module_id }
178         vnf_name: { get_param: vnf_name }
179       user_data_format: RAW
180       user_data:
181         str_replace:
182           params:
183             __lb_oam_int__: { get_param: vlb_onap_private_ip_0 }
184             __lb_private_ipaddr__: { get_param: vlb_int_private_ip_0 }
185             __lb_to_pktgen_if__: { get_param: vlb_int_pktgen_private_ip_0}
186             __local_private_ipaddr__: { get_param: vdns_int_private_ip_0 }
187             __oam_private_ipaddr__: { get_param: vdns_onap_private_ip_0 }
188             __nb_api_version__: { get_param: nb_api_version }
189             __install_script_version__: { get_param: install_script_version }
190             __demo_artifacts_version__: { get_param: demo_artifacts_version }
191             __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr }
192             __onap_private_net_cidr__: { get_param: onap_private_net_cidr }
193             __cloud_env__: { get_param: cloud_env }
194             __nexus_artifact_repo__: { get_param: nexus_artifact_repo }
195           template: |
196             #!/bin/bash
197
198             # Create configuration files
199             mkdir /opt/config
200             echo "__lb_oam_int__" > /opt/config/lb_oam_int.txt
201             echo "__lb_private_ipaddr__" > /opt/config/lb_private_ipaddr.txt
202             echo "__lb_to_pktgen_if__" > /opt/config/lb_to_pktgen_if.txt
203             echo "__local_private_ipaddr__" > /opt/config/local_private_ipaddr.txt
204             echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt
205             echo "__nb_api_version__" > /opt/config/nb_api_version.txt
206             echo "__install_script_version__" > /opt/config/install_script_version.txt
207             echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt
208             echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt
209             echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt
210             echo "__cloud_env__" > /opt/config/cloud_env.txt
211             echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt
212
213             # Download and run install script
214             apt-get update
215             apt-get -y install unzip
216             if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi
217             curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlbms&a=vlbms-scripts&e=zip&v=__install_script_version__" -o /opt/vlbms-scripts-__install_script_version__.zip
218             unzip -j /opt/vlbms-scripts-__install_script_version__.zip -d /opt v_dns_install.sh
219             cd /opt
220             chmod +x v_dns_install.sh
221             ./v_dns_install.sh