Allow multiple devstack Cinder plugins

This commit allows this plugin to be run in parallel with other devstack plugins
like glusterfs, ceph, etc. This is needed to allow gate jobs that test
multibackend features.

Change-Id: I79c5ee753607953ffad7e78b96ffea506d84fc21
This commit is contained in:
Erlon R. Cruz 2016-09-21 08:57:17 -03:00
parent fc041321ae
commit fade5da51b
1 changed files with 7 additions and 1 deletions

View File

@ -2,9 +2,15 @@ ENABLE_NFS_CINDER=$(trueorfalse True ENABLE_NFS_CINDER)
if [[ $ENABLE_NFS_CINDER == "True" ]]; then
CINDER_DRIVER=nfs
CINDER_ENABLED_BACKENDS=nfs:nfs
CINDER_ENABLED_BACKENDS=${CINDER_ENABLED_BACKENDS:-nfs:nfs}
# NOTE(mriedem): This is a workaround for Cinder bug 1642394.
CINDER_IMG_CACHE_ENABLED=False
# Always make sure that once the plugin is enabled, the backend will be
# properly activated.
if [[ ! $CINDER_ENABLED_BACKENDS == *nfs:nfs* ]]; then
CINDER_ENABLED_BACKENDS+=',nfs:nfs'
fi
TEMPEST_STORAGE_PROTOCOL=nfs
fi