9d6647d561
Lokup by hiera() makes impossible to change network_scheme from plugin tasks. Change-Id: I9f034906bb382db13c83e5d320e33800357d72b7 Closes-bug: #1535679
96 lines
3.3 KiB
Puppet
96 lines
3.3 KiB
Puppet
notice('MODULAR: ceph/mon.pp')
|
|
|
|
$storage_hash = hiera('storage', {})
|
|
$use_neutron = hiera('use_neutron')
|
|
$public_vip = hiera('public_vip')
|
|
$management_vip = hiera('management_vip')
|
|
$use_syslog = hiera('use_syslog', true)
|
|
$syslog_log_facility_ceph = hiera('syslog_log_facility_ceph','LOG_LOCAL0')
|
|
$keystone_hash = hiera('keystone', {})
|
|
$mon_address_map = get_node_to_ipaddr_map_by_network_role(hiera_hash('ceph_monitor_nodes'), 'ceph/public')
|
|
|
|
if ($storage_hash['images_ceph']) {
|
|
$glance_backend = 'ceph'
|
|
} elsif ($storage_hash['images_vcenter']) {
|
|
$glance_backend = 'vmware'
|
|
} else {
|
|
$glance_backend = 'swift'
|
|
}
|
|
|
|
if ($storage_hash['volumes_ceph'] or
|
|
$storage_hash['images_ceph'] or
|
|
$storage_hash['objects_ceph'] or
|
|
$storage_hash['ephemeral_ceph']
|
|
) {
|
|
$use_ceph = true
|
|
} else {
|
|
$use_ceph = false
|
|
}
|
|
|
|
if $use_ceph {
|
|
$ceph_primary_monitor_node = hiera('ceph_primary_monitor_node')
|
|
$primary_mons = keys($ceph_primary_monitor_node)
|
|
$primary_mon = $ceph_primary_monitor_node[$primary_mons[0]]['name']
|
|
|
|
prepare_network_config(hiera_hash('network_scheme',{}))
|
|
$ceph_cluster_network = get_network_role_property('ceph/replication', 'network')
|
|
$ceph_public_network = get_network_role_property('ceph/public', 'network')
|
|
$mon_addr = get_network_role_property('ceph/public', 'ipaddr')
|
|
|
|
class {'ceph':
|
|
primary_mon => $primary_mon,
|
|
mon_hosts => keys($mon_address_map),
|
|
mon_ip_addresses => values($mon_address_map),
|
|
mon_addr => $mon_addr,
|
|
cluster_node_address => $public_vip,
|
|
osd_pool_default_size => $storage_hash['osd_pool_size'],
|
|
osd_pool_default_pg_num => $storage_hash['pg_num'],
|
|
osd_pool_default_pgp_num => $storage_hash['pg_num'],
|
|
use_rgw => false,
|
|
glance_backend => $glance_backend,
|
|
rgw_pub_ip => $public_vip,
|
|
rgw_adm_ip => $management_vip,
|
|
rgw_int_ip => $management_vip,
|
|
cluster_network => $ceph_cluster_network,
|
|
public_network => $ceph_public_network,
|
|
use_syslog => $use_syslog,
|
|
syslog_log_level => hiera('syslog_log_level_ceph', 'info'),
|
|
syslog_log_facility => $syslog_log_facility_ceph,
|
|
rgw_keystone_admin_token => $keystone_hash['admin_token'],
|
|
ephemeral_ceph => $storage_hash['ephemeral_ceph']
|
|
}
|
|
|
|
if ($storage_hash['volumes_ceph']) {
|
|
include ::cinder::params
|
|
service { 'cinder-volume':
|
|
ensure => 'running',
|
|
name => $::cinder::params::volume_service,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
}
|
|
|
|
service { 'cinder-backup':
|
|
ensure => 'running',
|
|
name => $::cinder::params::backup_service,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
}
|
|
|
|
Class['ceph'] ~> Service['cinder-volume']
|
|
Class['ceph'] ~> Service['cinder-backup']
|
|
}
|
|
|
|
if ($storage_hash['images_ceph']) {
|
|
include ::glance::params
|
|
service { 'glance-api':
|
|
ensure => 'running',
|
|
name => $::glance::params::api_service_name,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
}
|
|
|
|
Class['ceph'] ~> Service['glance-api']
|
|
}
|
|
|
|
}
|