908a62b2b9
Use new parameters for Juno like it's documented here: http://docs.openstack.org/trunk/config-reference/content/glance-conf-changes-master.html * Use [glance_store] section * Update prefix when needed Partial-Bug: #1391099 Change-Id: I096b16c33c493270422113e0107a100f967debc6
20 lines
587 B
Puppet
20 lines
587 B
Puppet
#
|
|
# used to configure file backends for glance
|
|
#
|
|
# $filesystem_store_datadir - Location where dist images are stored when
|
|
# default_store == file.
|
|
# Optional. Default: /var/lib/glance/images/
|
|
class glance::backend::file(
|
|
$filesystem_store_datadir = '/var/lib/glance/images/'
|
|
) inherits glance::api {
|
|
|
|
glance_api_config {
|
|
'glance_store/default_store': value => 'file';
|
|
'glance_store/filesystem_store_datadir': value => $filesystem_store_datadir;
|
|
}
|
|
|
|
glance_cache_config {
|
|
'glance_store/filesystem_store_datadir': value => $filesystem_store_datadir;
|
|
}
|
|
}
|