fuel-library/deployment/puppet/glance/manifests/backend/file.pp
Emilien Macchi 87aee90f20 Update [glance_store] section in glance config for Juno
Use new parameters for Juno like it's documented here:
http://docs.openstack.org/trunk/config-reference/content/glance-conf-changes-master.html
http://docs.openstack.org/trunk/config-reference/content/configuring-image-service-backends.html
* Use [glance_store] section
* Update prefix when needed

From Change-Id: I096b16c33c493270422113e0107a100f967debc6

Closes-bug: 1391475
Co-Authored-By: Emilien Macchi <emilien.macchi@enovance.com>

Change-Id: I5174e1b6a6d4ac978680325a5fad46001c5ca59f
2014-11-11 19:43:56 +03:00

20 lines
582 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 {
'DEFAULT/filesystem_store_datadir': value => $filesystem_store_datadir;
}
}