Update glance::api stores parameters

The patch to implement multiple stores configuration
changed the way that the known_stores variable works,
raplacing it with stores (a list of each store) and
default_store (the default backend store). This patch
updates these parameters to reflect that change.

Change-Id: Ia0838be44a6d91e8b9b38517262c27b8bc1ded08
Depends-on: I28a79ae36e673a3537ea16910d338666b65c80f7
This commit is contained in:
Nate Potter 2016-03-02 22:16:04 +00:00
parent a0c3df6eae
commit 9bbbb1a8db

View File

@ -68,7 +68,8 @@ class openstack_integration::glance (
database_connection => 'mysql+pymysql://glance:glance@127.0.0.1/glance?charset=utf8',
keystone_password => 'a_big_secret',
workers => 2,
known_stores => $glance_stores,
stores => $glance_stores,
default_store => $backend,
}
class { '::glance::registry':
debug => true,