From 9bbbb1a8db4117a4d7fa7e9fb010eae9e0b77030 Mon Sep 17 00:00:00 2001 From: Nate Potter Date: Wed, 2 Mar 2016 22:16:04 +0000 Subject: [PATCH] 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 --- manifests/glance.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/glance.pp b/manifests/glance.pp index 465b914c9..3d471ca9b 100644 --- a/manifests/glance.pp +++ b/manifests/glance.pp @@ -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,