summaryrefslogtreecommitdiff
path: root/glance_store/__init__.py
diff options
context:
space:
mode:
authorAbhishek Kekane <akekane@redhat.com>2018-06-08 09:50:32 +0000
committerAbhishek Kekane <akekane@redhat.com>2018-07-15 15:10:27 +0000
commit87114c8ec70364f2690fdec875180657002c33ab (patch)
tree08bb660555bb8e19c5655c71ca28634cb0a07dfd /glance_store/__init__.py
parentd50ab63e138d58ef96b302fc1a1cf56923a26c76 (diff)
downloadglance_store-87114c8ec70364f2690fdec875180657002c33ab.tar.gz
Enable multi store support for glance
Added supporting logic to configure, manage and use multiple stores of the same or different type/scheme. Added new config option 'default_backend' which will be used to specifiy default store to which image will be stored. Added support for file and rbd store. The default behavior is maintained for backward compatibility. DocImpact Partial-Implements: bp multi-store Change-Id: I1f2e8fa61d6dfecd8395a1f894f74ec5bcb5573c
Diffstat (limited to 'glance_store/__init__.py')
-rw-r--r--glance_store/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/glance_store/__init__.py b/glance_store/__init__.py
index 388d029..851e55f 100644
--- a/glance_store/__init__.py
+++ b/glance_store/__init__.py
@@ -13,6 +13,7 @@
# License for the specific language governing permissions and limitations
# under the License.
+from .multi_backend import * # noqa
from .backend import * # noqa
from .driver import * # noqa
from .exceptions import * # noqa