Move barbican client in main tree

Move the barbican client out of contrib into the main tree, to have it
available by default.

blueprint barbican-as-secret-backend

Change-Id: Id3fabae3f3c949634d22fad0bd425c7bfce509c8
This commit is contained in:
Thomas Herve 2015-05-05 18:22:35 +02:00
parent d047c865ac
commit 934d4caca5
5 changed files with 3 additions and 9 deletions

View File

@ -1 +0,0 @@
python-barbicanclient>=2.0.0

View File

@ -26,10 +26,6 @@ packages =
data_files =
lib/heat/barbican = heat_barbican/resources/*
[entry_points]
heat.clients =
barbican = heat_barbican.client:BarbicanClientPlugin
[global]
setup-hooks =
pbr.hooks.setup_hook

View File

@ -14,10 +14,7 @@
from heat.engine.clients import client_plugin
try:
from barbicanclient import client as barbican_client
except ImportError:
barbican_client = None
from barbicanclient import client as barbican_client
class BarbicanClientPlugin(client_plugin.ClientPlugin):

View File

@ -27,6 +27,7 @@ oslo.versionedobjects>=0.1.1
PasteDeploy>=1.5.0
posix_ipc
pycrypto>=2.6
python-barbicanclient>=3.0.1
python-ceilometerclient>=1.0.13
python-cinderclient>=1.2.0
python-glanceclient>=0.15.0

View File

@ -46,6 +46,7 @@ oslo.config.opts =
heat_integrationtests.common.config = heat_integrationtests.common.config:list_opts
heat.clients =
barbican = heat.engine.clients.os.barbican:BarbicanClientPlugin
ceilometer = heat.engine.clients.os.ceilometer:CeilometerClientPlugin
cinder = heat.engine.clients.os.cinder:CinderClientPlugin
glance = heat.engine.clients.os.glance:GlanceClientPlugin