Merge "Update configuration section for rabbitmq"

This commit is contained in:
Jenkins 2015-12-04 16:16:04 +00:00 committed by Gerrit Code Review
commit 5e8c1af665

@ -165,9 +165,8 @@ The configuration file is organized into the following sections:
* ``[watcher_applier]`` - Watcher Applier module configuration * ``[watcher_applier]`` - Watcher Applier module configuration
* ``[watcher_decision_engine]`` - Watcher Decision Engine module configuration * ``[watcher_decision_engine]`` - Watcher Decision Engine module configuration
* ``[watcher_goals]`` - Goals mapping configuration * ``[watcher_goals]`` - Goals mapping configuration
* ``[watcher_messaging]`` -Messaging driver configuration
* ``[watcher_strategies]`` - Strategy configuration * ``[watcher_strategies]`` - Strategy configuration
* ``[oslo_messaging_rabbit]`` - Oslo Messaging RabbitMQ driver configuration
The Watcher configuration file is expected to be named The Watcher configuration file is expected to be named
``watcher.conf``. When starting Watcher, you can specify a different ``watcher.conf``. When starting Watcher, you can specify a different
@ -206,33 +205,33 @@ so that the watcher service is configured for your needs.
IP address of the RabbitMQ server, RABBITMQ_USER and RABBITMQ_PASSWORD IP address of the RabbitMQ server, RABBITMQ_USER and RABBITMQ_PASSWORD
by the RabbitMQ server login credentials :: by the RabbitMQ server login credentials ::
[watcher_messaging] [DEFAULT]
# The name of the driver used by oslo messaging (string value) # The messaging driver to use, defaults to rabbit. Other drivers
#notifier_driver = messaging # include qpid and zmq. (string value)
#rpc_backend = rabbit
# The name of a message executor, for example: eventlet, blocking # The default exchange under which topics are scoped. May be
# (string value) # overridden by an exchange name specified in the transport_url
#executor = blocking # option. (string value)
control_exchange = watcher
# The protocol used by the message broker, for example rabbit (string ...
# value)
#protocol = rabbit [oslo_messaging_rabbit]
# The username used by the message broker (string value) # The username used by the message broker (string value)
user = RABBITMQ_USER rabbit_userid = RABBITMQ_USER
# The password of user used by the message broker (string value) # The password of user used by the message broker (string value)
password = RABBITMQ_PASSWORD rabbit_password = RABBITMQ_PASSWORD
# The host where the message brokeris installed (string value) # The host where the message brokeris installed (string value)
host = RABBIT_HOST rabbit_host = RABBIT_HOST
# The port used bythe message broker (string value) # The port used bythe message broker (string value)
#port = 5672 #rabbit_port = 5672
# The virtual host used by the message broker (string value)
#virtual_host =
#. Configure the Watcher Service to use these credentials with the Identity #. Configure the Watcher Service to use these credentials with the Identity
Service. Replace IDENTITY_IP with the IP of the Identity server, and Service. Replace IDENTITY_IP with the IP of the Identity server, and