bilean/devstack
Zuo ZongMing 31842b6f3d Update the README
Change-Id: If8d426f73e1e8eaea6dd9a2b8e4fa2b06500d4b4
2017-11-29 15:27:28 +08:00
..
lib Add devstack plugin 2016-05-17 05:40:34 -04:00
README.rst Update the README 2017-11-29 15:27:28 +08:00
plugin.sh Add devstack plugin 2016-05-17 05:40:34 -04:00
settings Add devstack plugin 2016-05-17 05:40:34 -04:00

README.rst

Enabling Bilean in DevStack

  1. Download DevStack.
git clone https://git.openstack.org/openstack-dev/devstack
cd devstack
  1. Add this repo as an external repository.
cat > /opt/stack/devstack/local.conf << END
[[local|localrc]]
enable_plugin bilean https://github.com/openstack/bilean master
END
  1. Add Plugin Configuration Hooks.

    Bilean service is driven using a plugin mechanism for integrating to other services. Each integrated service may require additional configuration settings. Typically, you will need to set the notifications driver in each service's configuration.

    For example, to enable nova service, edit /etc/nova/nova.conf and add following configuration:

    [oslo_messaging_notifications]
    driver = messaging

    Or add following configurations to post config section in local.conf to make devstack automaticlly configure the settings above:

    [[post-config|$NOVA_CONF]]
    [oslo_messaging_notifications]
    driver = messaging
  2. Then run devstack normally.

cd /opt/stack/devstack
./stack.sh