manila/contrib/devstack
Valeriy Ponomaryov f417e25ebc Fix devstack plugin custom config opt setting
Commit https://github.com/openstack/manila/commit/1a2ec3da introduced new
approach to manila configuration file setting and it won't consider custom
opts for DEFAULT group by default behaviour, only when its name added to
"MANILA_CONFIGURE_GROUPS".
We should make it set always, because DEFAULT group is used always.

Change-Id: I377d46148b8da3c26f26a51a42ae749715e396aa
Closes-Bug: #1401793
2014-12-12 17:42:50 +02:00
..
extras.d Added creation of secgroup for service vms in devstack plugin 2014-04-15 10:04:08 -04:00
lib Fix devstack plugin custom config opt setting 2014-12-12 17:42:50 +02:00
README.rst Clean up devstack plugin after LVM driver removal 2014-08-19 14:12:16 +00:00

Devstack Integration

This directory contains the files necessary to integrate Manila with devstack.

To install:

$ DEVSTACK_DIR=/path/to/devstack

$ cp lib/manila ${DEVSTACK_DIR}/lib

$ cp extras.d/70-manila.sh ${DEVSTACK_DIR}/extras.d

To configure devstack to run manila:

$ cd ${DEVSTACK_DIR}

$ services=(manila m-api m-shr m-sch); for item in ${services[*]}; do echo "enable_service $item" >> localrc; done