Merge "Remove nova::db classes, moved to puppet-tripleo"
[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 include ::tripleo::packages
17 include ::tripleo::firewall
18
19 $enable_load_balancer = hiera('enable_load_balancer', true)
20
21 if hiera('step') >= 1 {
22
23   create_resources(kmod::load, hiera('kernel_modules'), {})
24   create_resources(sysctl::value, hiera('sysctl_settings'), {})
25   Exec <| tag == 'kmod::load' |>  -> Sysctl <| |>
26
27 }
28
29 if hiera('step') >= 2 {
30
31   if count(hiera('ntp::servers')) > 0 {
32     include ::ntp
33   }
34
35   include ::timezone
36
37   # MongoDB
38   if downcase(hiera('ceilometer_backend')) == 'mongodb' {
39     # NOTE(gfidente): We need to pass the list of IPv6 addresses *with* port and
40     # without the brackets as 'members' argument for the 'mongodb_replset'
41     # resource.
42     if str2bool(hiera('mongodb::server::ipv6', false)) {
43       $mongo_node_ips_with_port_prefixed = prefix(hiera('mongo_node_ips'), '[')
44       $mongo_node_ips_with_port = suffix($mongo_node_ips_with_port_prefixed, ']:27017')
45       $mongo_node_ips_with_port_nobr = suffix(hiera('mongo_node_ips'), ':27017')
46     } else {
47       $mongo_node_ips_with_port = suffix(hiera('mongo_node_ips'), ':27017')
48       $mongo_node_ips_with_port_nobr = suffix(hiera('mongo_node_ips'), ':27017')
49     }
50     $mongo_node_string = join($mongo_node_ips_with_port, ',')
51
52     $mongodb_replset = hiera('mongodb::server::replset')
53     $ceilometer_mongodb_conn_string = "mongodb://${mongo_node_string}/ceilometer?replicaSet=${mongodb_replset}"
54   }
55
56   if str2bool(hiera('enable_galera', true)) {
57     $mysql_config_file = '/etc/my.cnf.d/galera.cnf'
58   } else {
59     $mysql_config_file = '/etc/my.cnf.d/server.cnf'
60   }
61   # TODO Galara
62   # FIXME: due to https://bugzilla.redhat.com/show_bug.cgi?id=1298671 we
63   # set bind-address to a hostname instead of an ip address; to move Mysql
64   # from internal_api on another network we'll have to customize both
65   # MysqlNetwork and ControllerHostnameResolveNetwork in ServiceNetMap
66   class { '::mysql::server':
67     config_file             => $mysql_config_file,
68     override_options        => {
69       'mysqld' => {
70         'bind-address'     => $::hostname,
71         'max_connections'  => hiera('mysql_max_connections'),
72         'open_files_limit' => '-1',
73       },
74     },
75     remove_default_accounts => true,
76   }
77
78   # FIXME: this should only occur on the bootstrap host (ditto for db syncs)
79   # Create all the database schemas
80   if downcase(hiera('gnocchi_indexer_backend')) == 'mysql' {
81     include ::gnocchi::db::mysql
82   }
83   if downcase(hiera('ceilometer_backend')) == 'mysql' {
84     include ::ceilometer::db::mysql
85   }
86   include ::aodh::db::mysql
87
88   $enable_ceph = hiera('ceph_storage_count', 0) > 0 or hiera('enable_ceph_storage', false)
89
90   if $enable_ceph {
91     $mon_initial_members = downcase(hiera('ceph_mon_initial_members'))
92     if str2bool(hiera('ceph_ipv6', false)) {
93       $mon_host = hiera('ceph_mon_host_v6')
94     } else {
95       $mon_host = hiera('ceph_mon_host')
96     }
97     class { '::ceph::profile::params':
98       mon_initial_members => $mon_initial_members,
99       mon_host            => $mon_host,
100     }
101     include ::ceph::conf
102     include ::ceph::profile::mon
103   }
104
105   if str2bool(hiera('enable_ceph_storage', false)) {
106     if str2bool(hiera('ceph_osd_selinux_permissive', true)) {
107       exec { 'set selinux to permissive on boot':
108         command => "sed -ie 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config",
109         onlyif  => "test -f /etc/selinux/config && ! grep '^SELINUX=permissive' /etc/selinux/config",
110         path    => ['/usr/bin', '/usr/sbin'],
111       }
112
113       exec { 'set selinux to permissive':
114         command => 'setenforce 0',
115         onlyif  => "which setenforce && getenforce | grep -i 'enforcing'",
116         path    => ['/usr/bin', '/usr/sbin'],
117       } -> Class['ceph::profile::osd']
118     }
119
120     include ::ceph::conf
121     include ::ceph::profile::osd
122   }
123
124   if str2bool(hiera('enable_external_ceph', false)) {
125     if str2bool(hiera('ceph_ipv6', false)) {
126       $mon_host = hiera('ceph_mon_host_v6')
127     } else {
128       $mon_host = hiera('ceph_mon_host')
129     }
130     class { '::ceph::profile::params':
131       mon_host            => $mon_host,
132     }
133     include ::ceph::conf
134     include ::ceph::profile::client
135   }
136
137 } #END STEP 2
138
139 if hiera('step') >= 4 {
140
141   $nova_ipv6 = hiera('nova::use_ipv6', false)
142   if $nova_ipv6 {
143     $memcached_servers = suffix(hiera('memcache_node_ips_v6'), ':11211')
144   } else {
145     $memcached_servers = suffix(hiera('memcache_node_ips'), ':11211')
146   }
147
148   class { '::nova' :
149     memcached_servers => $memcached_servers
150   }
151   include ::nova::config
152
153   if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
154
155     # TODO(devvesa) provide non-controller ips for these services
156     $zookeeper_node_ips = hiera('neutron_api_node_ips')
157     $cassandra_node_ips = hiera('neutron_api_node_ips')
158
159     # Run zookeeper in the controller if configured
160     if hiera('enable_zookeeper_on_controller') {
161       class {'::tripleo::cluster::zookeeper':
162         zookeeper_server_ips => $zookeeper_node_ips,
163         # TODO: create a 'bind' hiera key for zookeeper
164         zookeeper_client_ip  => hiera('neutron::bind_host'),
165         zookeeper_hostnames  => hiera('controller_node_names')
166       }
167     }
168
169     # Run cassandra in the controller if configured
170     if hiera('enable_cassandra_on_controller') {
171       class {'::tripleo::cluster::cassandra':
172         cassandra_servers => $cassandra_node_ips,
173         # TODO: create a 'bind' hiera key for cassandra
174         cassandra_ip      => hiera('neutron::bind_host'),
175       }
176     }
177
178     class {'::tripleo::network::midonet::agent':
179       zookeeper_servers => $zookeeper_node_ips,
180       cassandra_seeds   => $cassandra_node_ips
181     }
182
183     class {'::tripleo::network::midonet::api':
184       zookeeper_servers    => $zookeeper_node_ips,
185       vip                  => hiera('public_virtual_ip'),
186       keystone_ip          => hiera('public_virtual_ip'),
187       keystone_admin_token => hiera('keystone::admin_token'),
188       # TODO: create a 'bind' hiera key for api
189       bind_address         => hiera('neutron::bind_host'),
190       admin_password       => hiera('admin_password')
191     }
192
193     # TODO: find a way to get an empty list from hiera
194     # TODO: when doing the composable midonet plugin, don't forget to
195     # set service_plugins to an empty array in Hiera.
196     class {'::neutron':
197       service_plugins => []
198     }
199
200   }
201
202   # If the value of core plugin is set to 'opencontrail'
203   # include opencontrail core plugins
204   # else use the default value of 'ml2'
205   if hiera('neutron::core_plugin') == 'neutron_plugin_contrail.plugins.opencontrail.contrail_plugin.NeutronPluginContrailCoreV2' {
206     include ::neutron::plugins::opencontrail
207   } else {
208
209     # If the value of core plugin is set to 'midonet',
210     # skip all the ML2 configuration
211     if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
212
213       class {'::neutron::plugins::midonet':
214         midonet_api_ip    => hiera('public_virtual_ip'),
215         keystone_tenant   => hiera('neutron::server::auth_tenant'),
216         keystone_password => hiera('neutron::server::password')
217       }
218     }
219
220     Service['neutron-server'] -> Service['neutron-metadata']
221
222   }
223
224   if $enable_ceph {
225     $ceph_pools = hiera('ceph_pools')
226     ceph::pool { $ceph_pools :
227       pg_num  => hiera('ceph::profile::params::osd_pool_default_pg_num'),
228       pgp_num => hiera('ceph::profile::params::osd_pool_default_pgp_num'),
229       size    => hiera('ceph::profile::params::osd_pool_default_size'),
230     }
231   }
232
233   # swift storage
234   if str2bool(hiera('enable_swift_storage', true)) {
235     class { '::swift::storage::all':
236       mount_check => str2bool(hiera('swift_mount_check')),
237     }
238     if(!defined(File['/srv/node'])) {
239       file { '/srv/node':
240         ensure  => directory,
241         owner   => 'swift',
242         group   => 'swift',
243         require => Package['openstack-swift'],
244       }
245     }
246     $swift_components = ['account', 'container', 'object']
247     swift::storage::filter::recon { $swift_components : }
248     swift::storage::filter::healthcheck { $swift_components : }
249   }
250
251   # Ceilometer
252   $ceilometer_backend = downcase(hiera('ceilometer_backend'))
253   case $ceilometer_backend {
254     /mysql/ : {
255       $ceilometer_database_connection = hiera('ceilometer_mysql_conn_string')
256     }
257     default : {
258       $ceilometer_database_connection = $ceilometer_mongodb_conn_string
259     }
260   }
261   include ::ceilometer
262   include ::ceilometer::config
263   include ::ceilometer::api
264   include ::ceilometer::agent::notification
265   include ::ceilometer::agent::central
266   include ::ceilometer::expirer
267   include ::ceilometer::collector
268   include ::ceilometer::agent::auth
269   include ::ceilometer::dispatcher::gnocchi
270   class { '::ceilometer::db' :
271     database_connection => $ceilometer_database_connection,
272   }
273
274   Cron <| title == 'ceilometer-expirer' |> { command => "sleep $((\$(od -A n -t d -N 3 /dev/urandom) % 86400)) && ${::ceilometer::params::expirer_command}" }
275
276   # Aodh
277   class { '::aodh' :
278     database_connection => hiera('aodh_mysql_conn_string'),
279   }
280   include ::aodh::db::sync
281   include ::aodh::auth
282   include ::aodh::api
283   include ::aodh::wsgi::apache
284   include ::aodh::evaluator
285   include ::aodh::notifier
286   include ::aodh::listener
287   include ::aodh::client
288
289   # Horizon
290   include ::apache::mod::remoteip
291   if 'cisco_n1kv' in hiera('neutron::plugins::ml2::mechanism_drivers') {
292     $_profile_support = 'cisco'
293   } else {
294     $_profile_support = 'None'
295   }
296   $neutron_options   = {'profile_support' => $_profile_support }
297
298   $memcached_ipv6 = hiera('memcached_ipv6', false)
299   if $memcached_ipv6 {
300     $horizon_memcached_servers = hiera('memcache_node_ips_v6', '[::1]')
301   } else {
302     $horizon_memcached_servers = hiera('memcache_node_ips', '127.0.0.1')
303   }
304
305   class { '::horizon':
306     cache_server_ip => $horizon_memcached_servers,
307     neutron_options => $neutron_options,
308   }
309
310   # Gnocchi
311   $gnocchi_database_connection = hiera('gnocchi_mysql_conn_string')
312   class { '::gnocchi':
313     database_connection => $gnocchi_database_connection,
314   }
315   include ::gnocchi::api
316   include ::gnocchi::wsgi::apache
317   include ::gnocchi::client
318   include ::gnocchi::db::sync
319   include ::gnocchi::storage
320   include ::gnocchi::metricd
321   include ::gnocchi::statsd
322   $gnocchi_backend = downcase(hiera('gnocchi_backend', 'swift'))
323   case $gnocchi_backend {
324       'swift': { include ::gnocchi::storage::swift }
325       'file': { include ::gnocchi::storage::file }
326       'rbd': { include ::gnocchi::storage::ceph }
327       default: { fail('Unrecognized gnocchi_backend parameter.') }
328   }
329
330   $snmpd_user = hiera('snmpd_readonly_user_name')
331   snmp::snmpv3_user { $snmpd_user:
332     authtype => 'MD5',
333     authpass => hiera('snmpd_readonly_user_password'),
334   }
335   class { '::snmp':
336     agentaddress => ['udp:161','udp6:[::1]:161'],
337     snmpd_config => [ join(['createUser ', hiera('snmpd_readonly_user_name'), ' MD5 "', hiera('snmpd_readonly_user_password'), '"']), join(['rouser ', hiera('snmpd_readonly_user_name')]), 'proc  cron', 'includeAllDisks  10%', 'master agentx', 'trapsink localhost public', 'iquerySecName internalUser', 'rouser internalUser', 'defaultMonitors yes', 'linkUpDownNotifications yes' ],
338   }
339
340   hiera_include('controller_classes')
341
342 } #END STEP 4
343
344 if hiera('step') >= 5 {
345   $nova_enable_db_purge = hiera('nova_enable_db_purge', true)
346
347   if $nova_enable_db_purge {
348     include ::nova::cron::archive_deleted_rows
349   }
350 } #END STEP 5
351
352 $package_manifest_name = join(['/var/lib/tripleo/installed-packages/overcloud_controller', hiera('step')])
353 package_manifest{$package_manifest_name: ensure => present}