1123f79809
Glare service is now totally dropped from Glance [1] and now should be configured only with puppet-glare module. [1] https://review.openstack.org/#/c/427535/ Change-Id: I695ad518285a92a80dd7a9d5bebd11e804359224
96 lines
2.7 KiB
Puppet
96 lines
2.7 KiB
Puppet
# == class: glance::backend::rbd
|
|
#
|
|
# configures the storage backend for glance
|
|
# as a rbd instance
|
|
#
|
|
# === parameters:
|
|
#
|
|
# [*rbd_store_user*]
|
|
# Optional. Default: $::os_service_default.
|
|
#
|
|
# [*rbd_store_pool*]
|
|
# Optional. Default: $::os_service_default.
|
|
#
|
|
# [*rbd_store_ceph_conf*]
|
|
# Optional. Default: $::os_service_default.
|
|
#
|
|
# [*rbd_store_chunk_size*]
|
|
# Optional. Default: $::os_service_default.
|
|
#
|
|
# [*show_image_direct_url*]
|
|
# Optional. Enables direct COW from glance to rbd
|
|
# DEPRECATED, use show_image_direct_url in glance::api
|
|
#
|
|
# [*manage_packages*]
|
|
# Optional. Whether we should manage the packages.
|
|
# Defaults to true,
|
|
#
|
|
# [*package_ensure*]
|
|
# Optional. Desired ensure state of packages.
|
|
# accepts latest or specific versions.
|
|
# Defaults to present.
|
|
#
|
|
# [*rados_connect_timeout*]
|
|
# Optinal. Timeout value (in seconds) used when connecting
|
|
# to ceph cluster. If value <= 0, no timeout is set and
|
|
# default librados value is used.
|
|
# Default: $::os_service_default.
|
|
#
|
|
# [*multi_store*]
|
|
# Optional. Boolean describing if multiple backends will be configured
|
|
# Defaults to false
|
|
#
|
|
# === Deprecated parameters:
|
|
#
|
|
# [*glare_enabled*]
|
|
# (optional) Whether enabled Glance Glare API.
|
|
# Defaults to undef
|
|
#
|
|
class glance::backend::rbd(
|
|
$rbd_store_user = $::os_service_default,
|
|
$rbd_store_ceph_conf = $::os_service_default,
|
|
$rbd_store_pool = $::os_service_default,
|
|
$rbd_store_chunk_size = $::os_service_default,
|
|
$show_image_direct_url = undef,
|
|
$manage_packages = true,
|
|
$package_ensure = 'present',
|
|
$rados_connect_timeout = $::os_service_default,
|
|
$multi_store = false,
|
|
# deprecated
|
|
$glare_enabled = undef,
|
|
) {
|
|
|
|
include ::glance::deps
|
|
include ::glance::params
|
|
|
|
if $show_image_direct_url {
|
|
notice('parameter show_image_direct_url is deprecated, use parameter in glance::api')
|
|
}
|
|
|
|
glance_api_config {
|
|
'glance_store/rbd_store_ceph_conf': value => $rbd_store_ceph_conf;
|
|
'glance_store/rbd_store_user': value => $rbd_store_user;
|
|
'glance_store/rbd_store_pool': value => $rbd_store_pool;
|
|
'glance_store/rbd_store_chunk_size': value => $rbd_store_chunk_size;
|
|
'glance_store/rados_connect_timeout': value => $rados_connect_timeout;
|
|
}
|
|
|
|
if $glare_enabled != undef {
|
|
warning("Since Glare was removed from Glance and now it is separate project, \
|
|
you should use puppet-glare module for configuring Glare service.")
|
|
}
|
|
|
|
if !$multi_store {
|
|
glance_api_config { 'glance_store/default_store': value => 'rbd'; }
|
|
}
|
|
|
|
if $manage_packages {
|
|
package { 'python-ceph':
|
|
ensure => $package_ensure,
|
|
name => $::glance::params::pyceph_package_name,
|
|
tag => 'glance-support-package',
|
|
}
|
|
}
|
|
|
|
}
|