DevStack plugin to configure AMQP1.
Go to file
Doug Hellmann d19dd92808 import zuul job settings from project-config
This is a mechanically generated patch to complete step 1 of moving
the zuul job settings out of project-config and into each project
repository.

Because there will be a separate patch on each branch, the branch
specifiers for branch-specific jobs have been removed.

See the python3-first goal document for details:
https://governance.openstack.org/tc/goals/stein/python3-first.html

Change-Id: I4d8f69f03a1344aaca61b5b45ef3ec0a08eb19fb
Story: #2003250
2018-08-03 17:56:43 -04:00
devstack update configuration for qdrouter v1.0.0 2018-03-20 16:34:11 -04:00
playbooks/devstack-plugin-amqp1-tempest-dsvm-full Move project specific tests in repo 2017-11-01 15:40:14 -04:00
.gitignore Initial commit 2015-06-19 11:45:30 -04:00
.gitreview Added tox.ini, gitreview and update README 2015-09-30 21:26:18 -04:00
.zuul.yaml import zuul job settings from project-config 2018-08-03 17:56:43 -04:00
LICENSE Initial commit 2015-06-19 11:45:30 -04:00
README.rst Merge "amqp1 plugin update to use environment vars for transport_url" 2016-12-07 18:52:58 +00:00
tox.ini Set oslo_messaging_amqp section for qpid user 2016-02-17 11:31:24 -05:00

README.rst

Team and repository tags

image

Enabling in Devstack

Devstack plugin for AMQP 1.0 olso.messaging driver - This plugin supports the QPID C++ broker for RPC and Notification backends and the QPID Dispatch Router messaging system for the RPC backend. Additional information on these messaging systems can be found at the Apache QPID homepage (https://qpid.apache.org).

  1. Download DevStack

  2. Add this repo as an external repository:

    cat > local.conf
    [[local|localrc]]
    enable_plugin amqp1 https://git.openstack.org/openstack/devstack-plugin-amqp1
  3. Set username and password variables if needed and they will be added to configuration:

    AMQP1_USERNAME=queueuser
    AMQP1_PASSWORD=queuepassword     
  4. Optionally set the service variable for the configuration. The default is for the broker to provide both the RPC and Notification backends. If dual backends are to be used as an alternative AMQP1 service:

    AMQP1_SERVICE=qpid-dual
  5. Optionally set the network ports used to connect to the messaging service. If dual backends are to be configured, a separate Notify port must be used:

    AMQP1_DEFAULT_PORT=5672
    AMQP1_NOTIFY_PORT=5671
  6. run stack.sh