From 2c7d0e4dea602dfe94b3cbb0bd1a6be381d369e4 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 18 Oct 2016 14:14:21 +0100 Subject: [PATCH] Add os-brick to glance_pip_packages In order to use cinder as a glance back-end, the os-brick python package is required. While the inclusion of the package could be dynamically included, we already have cinder listed as an additional back-end by default and the cost of including this library by default is minimal, so this opts to keep it simple and just always include it. The python package list is also sorted alphabetically for easier package name finding in the future. Change-Id: Id7e4638e1addf902e6027f6375c794fd56a5039d Closes-Bug: #1634497 --- defaults/main.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 4387760e..eeec750e 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -197,15 +197,16 @@ glance_requires_pip_packages: # Common pip packages glance_pip_packages: - - glance - keystonemiddleware - - PyMySQL - - python-memcached + - glance + - os-brick - pycrypto - - python-glanceclient - - python-swiftclient + - PyMySQL - python-cinderclient + - python-glanceclient - python-keystoneclient + - python-memcached + - python-swiftclient - warlock ## Service Names