1c88bae3c8d22ea69842cff6381af3692e12c42d
[apex-tripleo-heat-templates.git] / puppet / manifests / overcloud_controller.pp
1 # Copyright 2014 Red Hat, Inc.
2 # All Rights Reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License"); you may
5 # not use this file except in compliance with the License. You may obtain
6 # a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 # License for the specific language governing permissions and limitations
14 # under the License.
15
16 if !str2bool(hiera('enable_package_install', 'false')) {
17   case $::osfamily {
18     'RedHat': {
19       Package { provider => 'norpm' } # provided by tripleo-puppet
20     }
21     default: {
22       warning('enable_package_install option not supported.')
23     }
24   }
25 }
26
27 if hiera('step') >= 1 {
28
29   include ::tripleo::loadbalancer
30
31 }
32
33 if hiera('step') >= 2 {
34
35   if count(hiera('ntp::servers')) > 0 {
36     include ::ntp
37   }
38
39   # TODO Galara
40   class { 'mysql::server':
41     override_options => {
42       'mysqld' => {
43         'bind-address' => hiera('controller_host')
44       }
45     }
46   }
47
48   # FIXME: this should only occur on the bootstrap host (ditto for db syncs)
49   # Create all the database schemas
50   # Example DSN format: mysql://user:password@host/dbname
51   $allowed_hosts = ['%',hiera('controller_host')]
52   $keystone_dsn = split(hiera('keystone::database_connection'), '[@:/?]')
53   class { 'keystone::db::mysql':
54     user          => $keystone_dsn[3],
55     password      => $keystone_dsn[4],
56     host          => $keystone_dsn[5],
57     dbname        => $keystone_dsn[6],
58     allowed_hosts => $allowed_hosts,
59   }
60   $glance_dsn = split(hiera('glance::api::database_connection'), '[@:/?]')
61   class { 'glance::db::mysql':
62     user          => $glance_dsn[3],
63     password      => $glance_dsn[4],
64     host          => $glance_dsn[5],
65     dbname        => $glance_dsn[6],
66     allowed_hosts => $allowed_hosts,
67   }
68   $nova_dsn = split(hiera('nova::database_connection'), '[@:/?]')
69   class { 'nova::db::mysql':
70     user          => $nova_dsn[3],
71     password      => $nova_dsn[4],
72     host          => $nova_dsn[5],
73     dbname        => $nova_dsn[6],
74     allowed_hosts => $allowed_hosts,
75   }
76   $neutron_dsn = split(hiera('neutron::server::database_connection'), '[@:/?]')
77   class { 'neutron::db::mysql':
78     user          => $neutron_dsn[3],
79     password      => $neutron_dsn[4],
80     host          => $neutron_dsn[5],
81     dbname        => $neutron_dsn[6],
82     allowed_hosts => $allowed_hosts,
83   }
84   $cinder_dsn = split(hiera('cinder::database_connection'), '[@:/?]')
85   class { 'cinder::db::mysql':
86     user          => $cinder_dsn[3],
87     password      => $cinder_dsn[4],
88     host          => $cinder_dsn[5],
89     dbname        => $cinder_dsn[6],
90     allowed_hosts => $allowed_hosts,
91   }
92   $heat_dsn = split(hiera('heat::database_connection'), '[@:/?]')
93   class { 'heat::db::mysql':
94     user          => $heat_dsn[3],
95     password      => $heat_dsn[4],
96     host          => $heat_dsn[5],
97     dbname        => $heat_dsn[6],
98     allowed_hosts => $allowed_hosts,
99   }
100   $ceilometer_dsn = split(hiera('ceilometer::db::database_connection'), '[@:/?]')
101   class { 'ceilometer::db::mysql':
102     user          => $ceilometer_dsn[3],
103     password      => $ceilometer_dsn[4],
104     host          => $ceilometer_dsn[5],
105     dbname        => $ceilometer_dsn[6],
106     allowed_hosts => $allowed_hosts,
107   }
108
109   if $::osfamily == 'RedHat' {
110     $rabbit_provider = 'yum'
111   } else {
112     $rabbit_provider = undef
113   }
114
115   Class['rabbitmq'] -> Rabbitmq_vhost <| |>
116   Class['rabbitmq'] -> Rabbitmq_user <| |>
117   Class['rabbitmq'] -> Rabbitmq_user_permissions <| |>
118
119   $rabbit_nodes = split(downcase(hiera('rabbit_nodes', $::hostname)), ',')
120   if count($rabbit_nodes) > 1 {
121     $rabbit_cluster = true
122   }
123   else {
124     $rabbit_cluster = false
125   }
126   class { 'rabbitmq':
127     package_provider => $rabbit_provider,
128     config_cluster   => $rabbit_cluster,
129     cluster_nodes    => $rabbit_nodes,
130     node_ip_address  => hiera('controller_host'),
131   }
132
133   rabbitmq_vhost { '/':
134     provider => 'rabbitmqctl',
135   }
136   rabbitmq_user { ['nova','glance','neutron','cinder','ceilometer','heat']:
137     admin    => true,
138     password => hiera('rabbit_password'),
139     provider => 'rabbitmqctl',
140   }
141
142   rabbitmq_user_permissions {[
143     'nova@/',
144     'glance@/',
145     'neutron@/',
146     'cinder@/',
147     'ceilometer@/',
148     'heat@/',
149   ]:
150     configure_permission => '.*',
151     write_permission     => '.*',
152     read_permission      => '.*',
153     provider             => 'rabbitmqctl',
154   }
155
156   # pre-install swift here so we can build rings
157   include ::swift
158
159   $cinder_enable_rbd_backend = hiera('cinder_enable_rbd_backend', false)
160   $enable_ceph = $cinder_enable_rbd_backend
161
162   if $enable_ceph {
163     class { 'ceph::profile::params':
164       mon_initial_members => downcase(hiera('ceph_mon_initial_members'))
165     }
166     include ::ceph::profile::mon
167   }
168
169 } #END STEP 2
170
171 if hiera('step') >= 3 {
172
173   include ::keystone
174
175   #TODO: need a cleanup-keystone-tokens.sh solution here
176   keystone_config {
177     'ec2/driver': value => 'keystone.contrib.ec2.backends.sql.Ec2';
178   }
179   file { [ '/etc/keystone/ssl', '/etc/keystone/ssl/certs', '/etc/keystone/ssl/private' ]:
180     ensure  => 'directory',
181     owner   => 'keystone',
182     group   => 'keystone',
183     require => Package['keystone'],
184   }
185   file { '/etc/keystone/ssl/certs/signing_cert.pem':
186     content => hiera('keystone_signing_certificate'),
187     owner   => 'keystone',
188     group   => 'keystone',
189     notify  => Service['keystone'],
190     require => File['/etc/keystone/ssl/certs'],
191   }
192   file { '/etc/keystone/ssl/private/signing_key.pem':
193     content => hiera('keystone_signing_key'),
194     owner   => 'keystone',
195     group   => 'keystone',
196     notify  => Service['keystone'],
197     require => File['/etc/keystone/ssl/private'],
198   }
199   file { '/etc/keystone/ssl/certs/ca.pem':
200     content => hiera('keystone_ca_certificate'),
201     owner   => 'keystone',
202     group   => 'keystone',
203     notify  => Service['keystone'],
204     require => File['/etc/keystone/ssl/certs'],
205   }
206
207   # TODO: notifications, scrubber, etc.
208   include ::glance::api
209   include ::glance::registry
210   include ::glance::backend::swift
211
212   class { 'nova':
213     rabbit_hosts           => [hiera('controller_virtual_ip')],
214     glance_api_servers     => join([hiera('glance_protocol'), '://', hiera('controller_virtual_ip'), ':', hiera('glance_port')]),
215   }
216
217   include ::nova::api
218   include ::nova::cert
219   include ::nova::conductor
220   include ::nova::consoleauth
221   include ::nova::network::neutron
222   include ::nova::vncproxy
223   include ::nova::scheduler
224
225   class {'neutron':
226     rabbit_hosts => [hiera('controller_virtual_ip')],
227   }
228
229   include ::neutron::server
230   include ::neutron::agents::dhcp
231   include ::neutron::agents::l3
232
233   file { '/etc/neutron/dnsmasq-neutron.conf':
234     content => hiera('neutron_dnsmasq_options'),
235     owner   => 'neutron',
236     group   => 'neutron',
237     notify  => Service['neutron-dhcp-service'],
238     require => Package['neutron'],
239   }
240
241   class { 'neutron::plugins::ml2':
242     flat_networks        => split(hiera('neutron_flat_networks'), ','),
243     tenant_network_types => [hiera('neutron_tenant_network_type')],
244     type_drivers         => [hiera('neutron_tenant_network_type')],
245   }
246
247   class { 'neutron::agents::ml2::ovs':
248     bridge_mappings  => split(hiera('neutron_bridge_mappings'), ','),
249     tunnel_types     => split(hiera('neutron_tunnel_types'), ','),
250   }
251
252   class { 'neutron::agents::metadata':
253     auth_url => join(['http://', hiera('controller_virtual_ip'), ':35357/v2.0']),
254   }
255
256   Service['neutron-server'] -> Service['neutron-dhcp-service']
257   Service['neutron-server'] -> Service['neutron-l3']
258   Service['neutron-server'] -> Service['neutron-ovs-agent-service']
259   Service['neutron-server'] -> Service['neutron-metadata']
260
261   class {'cinder':
262     rabbit_hosts => [hiera('controller_virtual_ip')],
263   }
264
265   include ::cinder::api
266   include ::cinder::glance
267   include ::cinder::scheduler
268   include ::cinder::volume
269   class {'cinder::setup_test_volume':
270     size => join([hiera('cinder_lvm_loop_device_size'), 'M']),
271   }
272
273   $cinder_enable_iscsi = hiera('cinder_enable_iscsi_backend', true)
274   if $cinder_enable_iscsi {
275     $cinder_iscsi_backend = 'tripleo_iscsi'
276
277     cinder::backend::iscsi { $cinder_iscsi_backend :
278       iscsi_ip_address => hiera('cinder_iscsi_ip_address'),
279       iscsi_helper     => hiera('cinder_iscsi_helper'),
280     }
281   }
282
283   if $enable_ceph {
284
285     Ceph_pool {
286       pg_num  => hiera('ceph::profile::params::osd_pool_default_pg_num'),
287       pgp_num => hiera('ceph::profile::params::osd_pool_default_pgp_num'),
288       size    => hiera('ceph::profile::params::osd_pool_default_size'),
289     }
290
291     $ceph_pools = hiera('ceph_pools')
292     ceph::pool { $ceph_pools : }
293   }
294
295   if $cinder_enable_rbd_backend {
296     $cinder_rbd_backend = 'tripleo_ceph'
297
298     cinder_config {
299       "${cinder_rbd_backend}/host": value => 'hostgroup';
300     }
301
302     cinder::backend::rbd { $cinder_rbd_backend :
303       rbd_pool        => 'volumes',
304       rbd_user        => 'openstack',
305       rbd_secret_uuid => hiera('ceph::profile::params::fsid'),
306       require         => Ceph::Pool['volumes'],
307     }
308   }
309
310   $cinder_enabled_backends = concat(any2array($cinder_iscsi_backend), $cinder_rbd_backend)
311   class { '::cinder::backends' :
312     enabled_backends => $cinder_enabled_backends,
313   }
314
315   # swift proxy
316   include ::memcached
317   include ::swift::proxy
318   include ::swift::proxy::proxy_logging
319   include ::swift::proxy::healthcheck
320   include ::swift::proxy::cache
321   include ::swift::proxy::keystone
322   include ::swift::proxy::authtoken
323   include ::swift::proxy::staticweb
324   include ::swift::proxy::ceilometer
325   include ::swift::proxy::ratelimit
326   include ::swift::proxy::catch_errors
327   include ::swift::proxy::tempurl
328   include ::swift::proxy::formpost
329
330   # swift storage
331   class {'swift::storage::all':
332     mount_check => str2bool(hiera('swift_mount_check'))
333   }
334   if(!defined(File['/srv/node'])) {
335     file { '/srv/node':
336       ensure  => directory,
337       owner   => 'swift',
338       group   => 'swift',
339       require => Package['openstack-swift'],
340     }
341   }
342   $swift_components = ['account', 'container', 'object']
343   swift::storage::filter::recon { $swift_components : }
344   swift::storage::filter::healthcheck { $swift_components : }
345
346   # Ceilometer
347   include ::ceilometer
348   include ::ceilometer::api
349   include ::ceilometer::db
350   include ::ceilometer::agent::notification
351   include ::ceilometer::agent::central
352   include ::ceilometer::alarm::notifier
353   include ::ceilometer::alarm::evaluator
354   include ::ceilometer::expirer
355   include ::ceilometer::collector
356   class { 'ceilometer::agent::auth':
357     auth_url => join(['http://', hiera('controller_virtual_ip'), ':5000/v2.0']),
358   }
359
360   Cron <| title == 'ceilometer-expirer' |> { command => "sleep $((\$(od -A n -t d -N 3 /dev/urandom) % 86400)) && ${::ceilometer::params::expirer_command}" }
361
362   # Heat
363   include ::heat
364   include ::heat::api
365   include ::heat::api_cfn
366   include ::heat::api_cloudwatch
367   include ::heat::engine
368
369   $snmpd_user = hiera('snmpd_readonly_user_name')
370   snmp::snmpv3_user { $snmpd_user:
371     authtype => 'MD5',
372     authpass => hiera('snmpd_readonly_user_password'),
373   }
374   class { 'snmp':
375     agentaddress => ['udp:161','udp6:[::1]:161'],
376     snmpd_config => [ join(['rouser ', hiera('snmpd_readonly_user_name')]), 'proc  cron', 'includeAllDisks  10%', 'master agentx', 'trapsink localhost public', 'iquerySecName internalUser', 'rouser internalUser', 'defaultMonitors yes', 'linkUpDownNotifications yes' ],
377   }
378
379 } #END STEP 3