You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|
|
}
|
|
}
|