Add vIMS heat template in demo repository
[demo.git] / heat / vIMS / dime.yaml
1 # Project Clearwater - IMS in the Cloud
2 # Copyright (C) 2015  Metaswitch Networks Ltd
3 #
4 # This program is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License as published by the
6 # Free Software Foundation, either version 3 of the License, or (at your
7 # option) any later version, along with the "Special Exception" for use of
8 # the program along with SSL, set forth below. This program is distributed
9 # in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 # A PARTICULAR PURPOSE.  See the GNU General Public License for more
12 # details. You should have received a copy of the GNU General Public
13 # License along with this program.  If not, see
14 # <http://www.gnu.org/licenses/>.
15 #
16 # The author can be reached by email at clearwater@metaswitch.com or by
17 # post at Metaswitch Networks Ltd, 100 Church St, Enfield EN2 6BQ, UK
18 #
19 # Special Exception
20 # Metaswitch Networks Ltd  grants you permission to copy, modify,
21 # propagate, and distribute a work formed by combining OpenSSL with The
22 # Software, or a work derivative of such a combination, even if such
23 # copying, modification, propagation, or distribution would otherwise
24 # violate the terms of the GPL. You must comply with the GPL in all
25 # respects for all of the code used other than OpenSSL.
26 # "OpenSSL" means OpenSSL toolkit software distributed by the OpenSSL
27 # Project and licensed under the OpenSSL Licenses, or a work based on such
28 # software and licensed under the OpenSSL Licenses.
29 # "OpenSSL Licenses" means the OpenSSL License and Original SSLeay License
30 # under which the OpenSSL Project distributes the OpenSSL toolkit software,
31 # as those licenses appear in the file LICENSE-OPENSSL.
32
33 heat_template_version: 2014-10-16
34
35 description: >
36   Clearwater dime node
37
38 parameters:
39   vnf_name:
40     type: string
41     label: VNF ID
42     description: The VNF name provided by ONAP
43   vnf_id:
44     type: string
45     label: VNF ID
46     description: The VNF ID provided by ONAP
47   vf_module_id:
48     type: string
49     label: VNF module ID
50     description: The VNF module ID provided by ONAP
51   public_net_id:
52     type: string
53     description: ID of public network
54     constraints:
55       - custom_constraint: neutron.network
56         description: Must be a valid network ID
57   dime_flavor_name:
58     type: string
59     description: Flavor to use
60     constraints:
61       - custom_constraint: nova.flavor
62         description: Must be a valid flavor name
63   dime_image_name:
64     type: string
65     description: Name of image to use
66   key_name:
67     type: string
68     description: Name of keypair to assign
69     constraints:
70       - custom_constraint: nova.keypair
71         description: Must be a valid keypair name
72   repo_url:
73     type: string
74     description: URL for Clearwater repository
75   zone:
76     type: string
77     description: DNS zone
78   dns_ip:
79     type: string
80     description: IP address for DNS server
81   dnssec_key:
82     type: string
83     description: DNSSEC private key (Base64-encoded)
84     constraints:
85       - allowed_pattern: "[0-9A-Za-z+/=]+"
86         description: Must be Base64-encoded
87   etcd_ip:
88     type: string
89     description: IP address of an existing member of the etcd cluster
90
91 resources:
92
93   dime_random_str:
94     type: OS::Heat::RandomString
95     properties:
96       length: 4
97
98   dime_security_group:
99     type: OS::Neutron::SecurityGroup
100     properties:
101       description: security group
102       name:
103         str_replace:
104           template: pre_base_rand
105           params:
106             pre: dime_sg_
107             base: { get_param: vnf_name }
108             rand: { get_resource: dime_random_str }
109       rules: [
110         {remote_ip_prefix: 0.0.0.0/0, protocol: tcp, port_range_min: 22, port_range_max: 22},
111         {remote_ip_prefix: 0.0.0.0/0, protocol: udp, port_range_min: 161, port_range_max: 162},
112         {remote_ip_prefix: 0.0.0.0/0, protocol: tcp, port_range_min: 2380, port_range_max: 2380},
113         {remote_ip_prefix: 0.0.0.0/0, protocol: tcp, port_range_min: 4000, port_range_max: 4000},
114         {remote_ip_prefix: 0.0.0.0/0, protocol: tcp, port_range_min: 8888, port_range_max: 8888},
115         {remote_ip_prefix: 0.0.0.0/0, protocol: tcp, port_range_min: 8889, port_range_max: 8889},
116         {remote_ip_prefix: 0.0.0.0/0, protocol: tcp, port_range_min: 10888, port_range_max: 10888},
117         {remote_ip_prefix: 0.0.0.0/0, protocol: icmp}]
118
119   dime_admin_port_0:
120     type: OS::Neutron::Port
121     properties:
122       name:
123         str_replace:
124           template: pre_base_rand
125           params:
126             pre: dime_admin_port_0_
127             base: { get_param: vnf_name }
128             rand: { get_resource: dime_random_str }
129       network: { get_param: public_net_id }
130       security_groups: [{ get_resource: dime_security_group }]
131
132   dime_server_0:
133     type: OS::Nova::Server
134     properties:
135       name:
136         str_replace:
137           template: pre_base_rand
138           params:
139             pre: dime_server_0_
140             base: { get_param: vnf_name }
141             rand: { get_resource: dime_random_str }
142       image: { get_param: dime_image_name }
143       flavor: { get_param: dime_flavor_name }
144       key_name: { get_param: key_name }
145       networks:
146         - port: { get_resource: dime_admin_port_0 }
147       metadata: {vnf_id: { get_param: vnf_id }, vf_module_id: { get_param: vf_module_id }, vnf_name: { get_param: vnf_name }}
148       user_data_format: RAW
149       user_data:
150         str_replace:
151           params:
152             __repo_url__: { get_param: repo_url }
153             __zone__: { get_param: zone }
154             __dns_ip__: { get_param: dns_ip }
155             __dnssec_key__: { get_param: dnssec_key }
156             __etcd_ip__ : { get_param: etcd_ip }
157             __index__ : 0
158           template: |
159             #!/bin/bash
160
161             # Log all output to file.
162             exec > >(tee -a /var/log/clearwater-heat-dime.log) 2>&1
163             set -x
164
165             # Configure the APT software source.
166             echo 'deb __repo_url__ binary/' > /etc/apt/sources.list.d/clearwater.list
167             curl -L http://repo.cw-ngv.com/repo_key | apt-key add -
168             apt-get update
169
170             # Get the public IP address from eth0
171             sudo apt-get install ipcalc
172             ADDR=`ip addr show eth0 | awk '/inet /{print $2}'`
173             PUBLIC_ADDR=`ipcalc -n -b $ADDR | awk '/Address:/{print $2}'`
174
175             # Configure /etc/clearwater/local_config.
176             mkdir -p /etc/clearwater
177             etcd_ip=__etcd_ip__
178             [ -n "$etcd_ip" ] || etcd_ip=$PUBLIC_ADDR
179             cat > /etc/clearwater/local_config << EOF
180             management_local_ip=$PUBLIC_ADDR
181             local_ip=$PUBLIC_ADDR
182             public_ip=$PUBLIC_ADDR
183             public_hostname=dime-__index__.__zone__
184             etcd_cluster=$etcd_ip
185             EOF
186
187             # Now install the software.
188             DEBIAN_FRONTEND=noninteractive apt-get install dime clearwater-prov-tools --yes --force-yes
189             DEBIAN_FRONTEND=noninteractive apt-get install clearwater-management --yes --force-yes
190
191             # Function to give DNS record type and IP address for specified IP address
192             ip2rr() {
193               if echo $1 | grep -q -e '[^0-9.]' ; then
194                 echo AAAA $1
195               else
196                 echo A $1
197               fi
198             }
199
200             # Update DNS
201             retries=0
202             while ! { nsupdate -y "__zone__:__dnssec_key__" -v << EOF
203             server __dns_ip__
204             update add dime-__index__.__zone__. 30 $(ip2rr $PUBLIC_ADDR)
205             update add dime.__zone__. 30 $(ip2rr $PUBLIC_ADDR)
206             update add hs.__zone__. 30 $(ip2rr $PUBLIC_ADDR)
207             update add ralf.__zone__. 30 $(ip2rr $PUBLIC_ADDR)
208             send
209             EOF
210             } && [ $retries -lt 10 ]
211             do
212               retries=$((retries + 1))
213               echo 'nsupdate failed - retrying (retry '$retries')...'
214               sleep 5
215             done
216
217             # Use the DNS server.
218             echo 'nameserver __dns_ip__' > /etc/dnsmasq.resolv.conf
219             echo 'RESOLV_CONF=/etc/dnsmasq.resolv.conf' >> /etc/default/dnsmasq
220             service dnsmasq force-reload
221
222 outputs:
223   dime_ip:
224     description: IP address in public network
225     value: { get_attr: [ dime_server_0, networks, { get_param: public_net_id }, 0 ] }