2386a7e2d5
blueprint: quantum-nvp-plugin Change-Id: I07c5d7b305928c341ef1b35a0d9b3281abcb03ae
37 lines
1.7 KiB
INI
37 lines
1.7 KiB
INI
# Example configuration:
|
|
# [NVP]
|
|
# DEFAULT_TZ_UUID = 1e8e52cf-fa7f-46b0-a14a-f99835a9cb53
|
|
# NVP_CONTROLLER_CONNECTIONS = NVP_CONN_1 NVP_CONN_2 NVP_CONN_3
|
|
# NVP_CONN_1=10.0.1.2:443:admin:password:30:10:2:2
|
|
# NVP_CONN_2=10.0.1.3:443:admin:password:30:10:2:2
|
|
# NVP_CONN_3=10.0.1.4:443:admin:password:30:10:2:2
|
|
[DEFAULT]
|
|
# No default config for now.
|
|
[NVP]
|
|
# This is the uuid of the default NVP Transport zone that will be used for
|
|
# creating isolated "Quantum" networks. The transport zone needs to be
|
|
# created in NVP before starting Quantum with the plugin.
|
|
DEFAULT_TZ_UUID = <insert default tz uuid>
|
|
# This parameter is a space separated list of NVP_CONTROLLER_CONNECTIONS.
|
|
NVP_CONTROLLER_CONNECTIONS = <space separated names of controller connections>
|
|
# This parameter describes a connection to a single NVP controller.
|
|
# <ip> is the ip address of the controller
|
|
# <port> is the port of the controller (default NVP port is 443)
|
|
# <user> is the user name for this controller
|
|
# <pass> is the user password.
|
|
# <request_timeout>: The total time limit on all operations for a controller
|
|
# request (including retries, redirects from unresponsive controllers).
|
|
# Default is 30.
|
|
# <http_timeout>: How long to wait before aborting an unresponsive controller
|
|
# (and allow for retries to another controller).
|
|
# Default is 10.
|
|
# <retries>: the maximum number of times to retry a particular request
|
|
# Default is 2.
|
|
# <redirects>: the maximum number of times to follow a redirect response from a server.
|
|
# Default is 2.
|
|
# There must be at least one NVP_CONTROLLER_CONNECTION per system.
|
|
#
|
|
# Here is an example:
|
|
# NVP_CONTROLLER_CONNECTION_1=10.0.0.1:443:admin:password:30:10:2:2
|
|
<connection name>=<ip>:<port>:<user>:<pass>:<api_call_timeout>:<http_timeout>:<retries>:<redirects>
|