87776ea95fcb69482b95b2ddc6832b518c95334d
[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     include ::mongodb::globals
40     include ::mongodb::client
41     include ::mongodb::server
42     # NOTE(gfidente): We need to pass the list of IPv6 addresses *with* port and
43     # without the brackets as 'members' argument for the 'mongodb_replset'
44     # resource.
45     if str2bool(hiera('mongodb::server::ipv6', false)) {
46       $mongo_node_ips_with_port_prefixed = prefix(hiera('mongo_node_ips'), '[')
47       $mongo_node_ips_with_port = suffix($mongo_node_ips_with_port_prefixed, ']:27017')
48       $mongo_node_ips_with_port_nobr = suffix(hiera('mongo_node_ips'), ':27017')
49     } else {
50       $mongo_node_ips_with_port = suffix(hiera('mongo_node_ips'), ':27017')
51       $mongo_node_ips_with_port_nobr = suffix(hiera('mongo_node_ips'), ':27017')
52     }
53     $mongo_node_string = join($mongo_node_ips_with_port, ',')
54
55     $mongodb_replset = hiera('mongodb::server::replset')
56     $ceilometer_mongodb_conn_string = "mongodb://${mongo_node_string}/ceilometer?replicaSet=${mongodb_replset}"
57     if downcase(hiera('bootstrap_nodeid')) == $::hostname {
58       mongodb_replset { $mongodb_replset :
59         members => $mongo_node_ips_with_port_nobr,
60       }
61     }
62   }
63
64   if str2bool(hiera('enable_galera', true)) {
65     $mysql_config_file = '/etc/my.cnf.d/galera.cnf'
66   } else {
67     $mysql_config_file = '/etc/my.cnf.d/server.cnf'
68   }
69   # TODO Galara
70   # FIXME: due to https://bugzilla.redhat.com/show_bug.cgi?id=1298671 we
71   # set bind-address to a hostname instead of an ip address; to move Mysql
72   # from internal_api on another network we'll have to customize both
73   # MysqlNetwork and ControllerHostnameResolveNetwork in ServiceNetMap
74   class { '::mysql::server':
75     config_file             => $mysql_config_file,
76     override_options        => {
77       'mysqld' => {
78         'bind-address'     => $::hostname,
79         'max_connections'  => hiera('mysql_max_connections'),
80         'open_files_limit' => '-1',
81       },
82     },
83     remove_default_accounts => true,
84   }
85
86   # FIXME: this should only occur on the bootstrap host (ditto for db syncs)
87   # Create all the database schemas
88   include ::nova::db::mysql
89   include ::nova::db::mysql_api
90   include ::neutron::db::mysql
91   if downcase(hiera('gnocchi_indexer_backend')) == 'mysql' {
92     include ::gnocchi::db::mysql
93   }
94   if downcase(hiera('ceilometer_backend')) == 'mysql' {
95     include ::ceilometer::db::mysql
96     include ::aodh::db::mysql
97   }
98
99   $enable_ceph = hiera('ceph_storage_count', 0) > 0 or hiera('enable_ceph_storage', false)
100
101   if $enable_ceph {
102     $mon_initial_members = downcase(hiera('ceph_mon_initial_members'))
103     if str2bool(hiera('ceph_ipv6', false)) {
104       $mon_host = hiera('ceph_mon_host_v6')
105     } else {
106       $mon_host = hiera('ceph_mon_host')
107     }
108     class { '::ceph::profile::params':
109       mon_initial_members => $mon_initial_members,
110       mon_host            => $mon_host,
111     }
112     include ::ceph::conf
113     include ::ceph::profile::mon
114   }
115
116   if str2bool(hiera('enable_ceph_storage', false)) {
117     if str2bool(hiera('ceph_osd_selinux_permissive', true)) {
118       exec { 'set selinux to permissive on boot':
119         command => "sed -ie 's/^SELINUX=.*/SELINUX=permissive/' /etc/selinux/config",
120         onlyif  => "test -f /etc/selinux/config && ! grep '^SELINUX=permissive' /etc/selinux/config",
121         path    => ['/usr/bin', '/usr/sbin'],
122       }
123
124       exec { 'set selinux to permissive':
125         command => 'setenforce 0',
126         onlyif  => "which setenforce && getenforce | grep -i 'enforcing'",
127         path    => ['/usr/bin', '/usr/sbin'],
128       } -> Class['ceph::profile::osd']
129     }
130
131     include ::ceph::conf
132     include ::ceph::profile::osd
133   }
134
135   if str2bool(hiera('enable_external_ceph', false)) {
136     if str2bool(hiera('ceph_ipv6', false)) {
137       $mon_host = hiera('ceph_mon_host_v6')
138     } else {
139       $mon_host = hiera('ceph_mon_host')
140     }
141     class { '::ceph::profile::params':
142       mon_host            => $mon_host,
143     }
144     include ::ceph::conf
145     include ::ceph::profile::client
146   }
147
148 } #END STEP 2
149
150 if hiera('step') >= 4 {
151
152   $nova_ipv6 = hiera('nova::use_ipv6', false)
153   if $nova_ipv6 {
154     $memcached_servers = suffix(hiera('memcache_node_ips_v6'), ':11211')
155   } else {
156     $memcached_servers = suffix(hiera('memcache_node_ips'), ':11211')
157   }
158
159   class { '::nova' :
160     memcached_servers => $memcached_servers
161   }
162   include ::nova::config
163   include ::nova::api
164   include ::nova::consoleauth
165   include ::nova::network::neutron
166   include ::nova::vncproxy
167   include ::nova::scheduler
168   include ::nova::scheduler::filter
169
170   if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
171
172     # TODO(devvesa) provide non-controller ips for these services
173     $zookeeper_node_ips = hiera('neutron_api_node_ips')
174     $cassandra_node_ips = hiera('neutron_api_node_ips')
175
176     # Run zookeeper in the controller if configured
177     if hiera('enable_zookeeper_on_controller') {
178       class {'::tripleo::cluster::zookeeper':
179         zookeeper_server_ips => $zookeeper_node_ips,
180         # TODO: create a 'bind' hiera key for zookeeper
181         zookeeper_client_ip  => hiera('neutron::bind_host'),
182         zookeeper_hostnames  => hiera('controller_node_names')
183       }
184     }
185
186     # Run cassandra in the controller if configured
187     if hiera('enable_cassandra_on_controller') {
188       class {'::tripleo::cluster::cassandra':
189         cassandra_servers => $cassandra_node_ips,
190         # TODO: create a 'bind' hiera key for cassandra
191         cassandra_ip      => hiera('neutron::bind_host'),
192       }
193     }
194
195     class {'::tripleo::network::midonet::agent':
196       zookeeper_servers => $zookeeper_node_ips,
197       cassandra_seeds   => $cassandra_node_ips
198     }
199
200     class {'::tripleo::network::midonet::api':
201       zookeeper_servers    => $zookeeper_node_ips,
202       vip                  => hiera('public_virtual_ip'),
203       keystone_ip          => hiera('public_virtual_ip'),
204       keystone_admin_token => hiera('keystone::admin_token'),
205       # TODO: create a 'bind' hiera key for api
206       bind_address         => hiera('neutron::bind_host'),
207       admin_password       => hiera('admin_password')
208     }
209
210     # TODO: find a way to get an empty list from hiera
211     class {'::neutron':
212       service_plugins => []
213     }
214
215   }
216   else {
217
218     # ML2 plugin
219     include ::neutron
220   }
221
222   include ::neutron::config
223   include ::neutron::server
224   include ::neutron::server::notifications
225
226   # If the value of core plugin is set to 'nuage' or'opencontrail' or 'plumgrid',
227   # include nuage or opencontrail or plumgrid core plugins
228   # else use the default value of 'ml2'
229   if hiera('neutron::core_plugin') == 'neutron.plugins.nuage.plugin.NuagePlugin' {
230     include ::neutron::plugins::nuage
231   } elsif hiera('neutron::core_plugin') == 'neutron_plugin_contrail.plugins.opencontrail.contrail_plugin.NeutronPluginContrailCoreV2' {
232     include ::neutron::plugins::opencontrail
233   }
234   elsif hiera('neutron::core_plugin') == 'networking_plumgrid.neutron.plugins.plugin.NeutronPluginPLUMgridV2' {
235     class { '::neutron::plugins::plumgrid' :
236       connection                   => hiera('neutron::server::database_connection'),
237       controller_priv_host         => hiera('keystone_admin_api_vip'),
238       admin_password               => hiera('admin_password'),
239       metadata_proxy_shared_secret => hiera('nova::api::neutron_metadata_proxy_shared_secret'),
240     }
241   } else {
242
243     # If the value of core plugin is set to 'midonet',
244     # skip all the ML2 configuration
245     if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
246
247       class {'::neutron::plugins::midonet':
248         midonet_api_ip    => hiera('public_virtual_ip'),
249         keystone_tenant   => hiera('neutron::server::auth_tenant'),
250         keystone_password => hiera('neutron::server::password')
251       }
252     } else {
253
254       include ::neutron::plugins::ml2
255       include ::neutron::agents::ml2::ovs
256
257       if 'cisco_n1kv' in hiera('neutron::plugins::ml2::mechanism_drivers') {
258         include ::neutron::plugins::ml2::cisco::nexus1000v
259
260         class { '::neutron::agents::n1kv_vem':
261           n1kv_source  => hiera('n1kv_vem_source', undef),
262           n1kv_version => hiera('n1kv_vem_version', undef),
263         }
264
265         class { '::n1k_vsm':
266           n1kv_source       => hiera('n1kv_vsm_source', undef),
267           n1kv_version      => hiera('n1kv_vsm_version', undef),
268           pacemaker_control => false,
269         }
270       }
271
272       if 'cisco_ucsm' in hiera('neutron::plugins::ml2::mechanism_drivers') {
273         include ::neutron::plugins::ml2::cisco::ucsm
274       }
275       if 'cisco_nexus' in hiera('neutron::plugins::ml2::mechanism_drivers') {
276         include ::neutron::plugins::ml2::cisco::nexus
277         include ::neutron::plugins::ml2::cisco::type_nexus_vxlan
278       }
279
280       if 'bsn_ml2' in hiera('neutron::plugins::ml2::mechanism_drivers') {
281         include ::neutron::plugins::ml2::bigswitch::restproxy
282         include ::neutron::agents::bigswitch
283       }
284       Service['neutron-server'] -> Service['neutron-ovs-agent-service']
285     }
286
287     Service['neutron-server'] -> Service['neutron-metadata']
288   }
289
290   if $enable_ceph {
291     $ceph_pools = hiera('ceph_pools')
292     ceph::pool { $ceph_pools :
293       pg_num  => hiera('ceph::profile::params::osd_pool_default_pg_num'),
294       pgp_num => hiera('ceph::profile::params::osd_pool_default_pgp_num'),
295       size    => hiera('ceph::profile::params::osd_pool_default_size'),
296     }
297   }
298
299   # swift storage
300   if str2bool(hiera('enable_swift_storage', true)) {
301     class { '::swift::storage::all':
302       mount_check => str2bool(hiera('swift_mount_check')),
303     }
304     if(!defined(File['/srv/node'])) {
305       file { '/srv/node':
306         ensure  => directory,
307         owner   => 'swift',
308         group   => 'swift',
309         require => Package['openstack-swift'],
310       }
311     }
312     $swift_components = ['account', 'container', 'object']
313     swift::storage::filter::recon { $swift_components : }
314     swift::storage::filter::healthcheck { $swift_components : }
315   }
316
317   # Ceilometer
318   $ceilometer_backend = downcase(hiera('ceilometer_backend'))
319   case $ceilometer_backend {
320     /mysql/ : {
321       $ceilometer_database_connection = hiera('ceilometer_mysql_conn_string')
322     }
323     default : {
324       $ceilometer_database_connection = $ceilometer_mongodb_conn_string
325     }
326   }
327   include ::ceilometer
328   include ::ceilometer::config
329   include ::ceilometer::api
330   include ::ceilometer::agent::notification
331   include ::ceilometer::agent::central
332   include ::ceilometer::expirer
333   include ::ceilometer::collector
334   include ::ceilometer::agent::auth
335   include ::ceilometer::dispatcher::gnocchi
336   class { '::ceilometer::db' :
337     database_connection => $ceilometer_database_connection,
338   }
339
340   Cron <| title == 'ceilometer-expirer' |> { command => "sleep $((\$(od -A n -t d -N 3 /dev/urandom) % 86400)) && ${::ceilometer::params::expirer_command}" }
341
342   # Aodh
343   class { '::aodh' :
344     database_connection => $ceilometer_database_connection,
345   }
346   include ::aodh::db::sync
347   # To manage the upgrade:
348   Exec['ceilometer-dbsync'] -> Exec['aodh-db-sync']
349   include ::aodh::auth
350   include ::aodh::api
351   include ::aodh::wsgi::apache
352   include ::aodh::evaluator
353   include ::aodh::notifier
354   include ::aodh::listener
355   include ::aodh::client
356
357   # Horizon
358   include ::apache::mod::remoteip
359   if 'cisco_n1kv' in hiera('neutron::plugins::ml2::mechanism_drivers') {
360     $_profile_support = 'cisco'
361   } else {
362     $_profile_support = 'None'
363   }
364   $neutron_options   = {'profile_support' => $_profile_support }
365
366   $memcached_ipv6 = hiera('memcached_ipv6', false)
367   if $memcached_ipv6 {
368     $horizon_memcached_servers = hiera('memcache_node_ips_v6', '[::1]')
369   } else {
370     $horizon_memcached_servers = hiera('memcache_node_ips', '127.0.0.1')
371   }
372
373   class { '::horizon':
374     cache_server_ip => $horizon_memcached_servers,
375     neutron_options => $neutron_options,
376   }
377
378   # Gnocchi
379   $gnocchi_database_connection = hiera('gnocchi_mysql_conn_string')
380   class { '::gnocchi':
381     database_connection => $gnocchi_database_connection,
382   }
383   include ::gnocchi::api
384   include ::gnocchi::wsgi::apache
385   include ::gnocchi::client
386   include ::gnocchi::db::sync
387   include ::gnocchi::storage
388   include ::gnocchi::metricd
389   include ::gnocchi::statsd
390   $gnocchi_backend = downcase(hiera('gnocchi_backend', 'swift'))
391   case $gnocchi_backend {
392       'swift': { include ::gnocchi::storage::swift }
393       'file': { include ::gnocchi::storage::file }
394       'rbd': { include ::gnocchi::storage::ceph }
395       default: { fail('Unrecognized gnocchi_backend parameter.') }
396   }
397
398   $snmpd_user = hiera('snmpd_readonly_user_name')
399   snmp::snmpv3_user { $snmpd_user:
400     authtype => 'MD5',
401     authpass => hiera('snmpd_readonly_user_password'),
402   }
403   class { '::snmp':
404     agentaddress => ['udp:161','udp6:[::1]:161'],
405     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' ],
406   }
407
408   hiera_include('controller_classes')
409
410 } #END STEP 4
411
412 if hiera('step') >= 5 {
413   $nova_enable_db_purge = hiera('nova_enable_db_purge', true)
414
415   if $nova_enable_db_purge {
416     include ::nova::cron::archive_deleted_rows
417   }
418 } #END STEP 5
419
420 $package_manifest_name = join(['/var/lib/tripleo/installed-packages/overcloud_controller', hiera('step')])
421 package_manifest{$package_manifest_name: ensure => present}