31842b6f3d
Change-Id: If8d426f73e1e8eaea6dd9a2b8e4fa2b06500d4b4 |
||
---|---|---|
.. | ||
lib | ||
plugin.sh | ||
README.rst | ||
settings |
Enabling Bilean in DevStack
- Download DevStack.
git clone https://git.openstack.org/openstack-dev/devstack cd devstack
- 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
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
Then run devstack normally.
cd /opt/stack/devstack ./stack.sh