bilean/devstack
lvdongbing 5025328bc1 Enable notification messaging pools
Use notification pools by default and use the same notification
topic as ceilometer, separate notification topic is no need to add.

Change-Id: Ieef1ece78e6e8d20abfeea9546e1a9170b7eeb70
2016-06-11 21:33:42 -04:00
..
lib Add devstack plugin 2016-05-17 05:40:34 -04:00
README.rst Enable notification messaging pools 2016-06-11 21:33:42 -04: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/nvoa.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