18b010975c
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: If683fbd098e701a3c4da91941cf818b18b41b209
51 lines
1.2 KiB
Puppet
51 lines
1.2 KiB
Puppet
# === class: glance::backend::file
|
|
#
|
|
# used to configure file backends for glance
|
|
#
|
|
# === parameters:
|
|
#
|
|
# [*filesystem_store_datadir*]
|
|
# Location where dist images are stored when
|
|
# default_store == file.
|
|
# Optional. Default: /var/lib/glance/images/
|
|
#
|
|
# [*multi_store*]
|
|
# (optional) Boolean describing if multiple backends will be configured
|
|
# Defaults to false
|
|
#
|
|
# [*glare_enabled*]
|
|
# (optional) Whether enabled Glance Glare API.
|
|
# Defaults to false
|
|
#
|
|
class glance::backend::file(
|
|
$filesystem_store_datadir = '/var/lib/glance/images/',
|
|
$multi_store = false,
|
|
$glare_enabled = false,
|
|
) {
|
|
|
|
include ::glance::deps
|
|
|
|
glance_api_config {
|
|
'glance_store/filesystem_store_datadir': value => $filesystem_store_datadir;
|
|
}
|
|
|
|
if $glare_enabled {
|
|
glance_glare_config {
|
|
'glance_store/filesystem_store_datadir': value => $filesystem_store_datadir;
|
|
}
|
|
}
|
|
|
|
if !$multi_store {
|
|
glance_api_config { 'glance_store/default_store': value => 'file'; }
|
|
if $glare_enabled {
|
|
glance_glare_config {
|
|
'glance_store/default_store': value => 'file';
|
|
}
|
|
}
|
|
}
|
|
|
|
glance_cache_config {
|
|
'glance_store/filesystem_store_datadir': value => $filesystem_store_datadir;
|
|
}
|
|
}
|