[config-ref] Update neutron tables

Change-Id: Iccd72475e56f85961038e4d22996c919bb25624a
Closes-Bug: #1494066
Closes-Bug: #1515144
Closes-Bug: #1526245
Partial-Bug: #1548466
Partial-Bug: #1537320
Partial-Bug: #1504529
Partial-Bug: #1530647
This commit is contained in:
venkatamahesh 2016-02-26 09:40:11 +05:30
parent e4fc7027ad
commit 69bd202da8
26 changed files with 179 additions and 203 deletions

View File

@ -183,59 +183,6 @@ must set the ``notification_driver`` option to
.. include:: ../tables/neutron-rabbitmq.rst
Configure Qpid
--------------
Use these options to configure the Qpid messaging system for OpenStack
Oslo RPC. Qpid is not the default messaging system, so you must enable
it by setting the ``rpc_backend`` option in the ``neutron.conf`` file:
.. code-block:: ini
rpc_backend = neutron.openstack.common.rpc.impl_qpid
This critical option points the compute nodes to the Qpid broker
(server). Set the ``qpid_hostname`` option to the host name where the
broker runs in the ``neutron.conf`` file.
.. note::
The ``qpid_hostname`` parameter accepts a host name or IP address
value.
.. code-block:: ini
qpid_hostname = hostname.example.com
If the Qpid broker listens on a port other than the AMQP default of
5672, you must set the ``qpid_port`` option to that value:
.. code-block:: ini
qpid_port = 12345
If you configure the Qpid broker
to require authentication, you must add a user name and password
to the configuration:
.. code-block:: ini
qpid_username = username
qpid_password = password
By default, TCP is used as the transport. To enable SSL, set
the ``qpid_protocol`` option:
.. code-block:: ini
qpid_protocol = ssl
Use these additional options to configure the Qpid messaging
driver for OpenStack Oslo RPC. These options are used
infrequently.
.. include:: ../tables/neutron-qpid.rst
Configure ZeroMQ
----------------

View File

@ -20,11 +20,13 @@
-
* - ``control_exchange`` = ``neutron``
- (StrOpt) The default exchange under which topics are scoped. May be overridden by an exchange name specified in the transport_url option.
* - ``notification_driver`` = ``[]``
- (MultiStrOpt) The Drivers(s) to handle sending notifications. Possible values are messaging, messagingv2, routing, log, test, noop
* - ``notification_topics`` = ``notifications``
- (ListOpt) AMQP topic used for OpenStack notifications.
* - ``notification_transport_url`` = ``None``
- (StrOpt) A URL representing the messaging driver to use for notifications. If not set, we fall back to the same configuration used for RPC.
* - ``transport_url`` = ``None``
- (StrOpt) A URL representing the messaging driver to use and its full configuration. If not set, we fall back to the rpc_backend option and driver specific configuration.
* - **[oslo_messaging_notifications]**
-
* - ``driver`` = ``[]``
- (MultiStrOpt) The Drivers(s) to handle sending notifications. Possible values are messaging, messagingv2, routing, log, test, noop
* - ``topics`` = ``notifications``
- (ListOpt) AMQP topic used for OpenStack notifications.
* - ``transport_url`` = ``None``
- (StrOpt) A URL representing the messaging driver to use for notifications. If not set, we fall back to the same configuration used for RPC.

View File

@ -33,18 +33,16 @@
* - ``client_socket_timeout`` = ``900``
- (IntOpt) Timeout for client connections' socket operations. If an incoming connection is idle for this number of seconds it will be closed. A value of '0' means wait forever.
* - ``max_header_line`` = ``16384``
- (IntOpt) Maximum line size of message headers to be accepted. max_header_line may need to be increased when using large tokens (typically those generated by the Keystone v3 API with big service catalogs).
- (IntOpt) Maximum line size of message headers to be accepted. max_header_line may need to be increased when using large tokens (typically those generated when keystone is configured to use PKI tokens with big service catalogs).
* - ``pagination_max_limit`` = ``-1``
- (StrOpt) The maximum number of items returned in a single response, value was 'infinite' or negative integer means no limit
* - ``port`` = ``6379``
- (IntOpt) Use this port to connect to redis host.
* - ``retry_until_window`` = ``30``
- (IntOpt) Number of seconds to keep retrying to listen
* - ``service_plugins`` =
- (ListOpt) The service plugins Neutron will use
* - ``tcp_keepidle`` = ``600``
- (IntOpt) Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not supported on OS X.
* - ``wsgi_default_pool_size`` = ``1000``
* - ``wsgi_default_pool_size`` = ``100``
- (IntOpt) Size of the pool of greenthreads used by wsgi
* - ``wsgi_keep_alive`` = ``True``
- (BoolOpt) If False, closes the client socket connection explicitly.

View File

@ -33,7 +33,7 @@
* - ``auth_port`` = ``35357``
- (IntOpt) Port of the admin Identity API endpoint. Deprecated, use identity_uri.
* - ``auth_protocol`` = ``https``
- (StrOpt) Protocol of the admin Identity API endpoint (http or https). Deprecated, use identity_uri.
- (StrOpt) Protocol of the admin Identity API endpoint. Deprecated, use identity_uri.
* - ``auth_section`` = ``None``
- (Opt) Config Section from which to load plugin specific options
* - ``auth_type`` = ``None``
@ -81,7 +81,7 @@
* - ``memcache_secret_key`` = ``None``
- (StrOpt) (Optional, mandatory if memcache_security_strategy is defined) This string is used for key derivation.
* - ``memcache_security_strategy`` = ``None``
- (StrOpt) (Optional) If defined, indicate whether token data should be authenticated or authenticated and encrypted. Acceptable values are MAC or ENCRYPT. If MAC, token data is authenticated (with HMAC) in the cache. If ENCRYPT, token data is encrypted and authenticated in the cache. If the value is not one of these options or empty, auth_token will raise an exception on initialization.
- (StrOpt) (Optional) If defined, indicate whether token data should be authenticated or authenticated and encrypted. If MAC, token data is authenticated (with HMAC) in the cache. If ENCRYPT, token data is encrypted and authenticated in the cache. If the value is not one of these options or empty, auth_token will raise an exception on initialization.
* - ``memcache_use_advanced_pool`` = ``False``
- (BoolOpt) (Optional) Use the advanced (eventlet safe) memcached client pool. The advanced pool will only work under python 2.x.
* - ``region_name`` = ``None``

View File

@ -28,6 +28,8 @@
- (StrOpt) The type of authentication to use
* - ``base_mac`` = ``fa:16:3e:00:00:00``
- (StrOpt) The base MAC address Neutron will use for VIFs. The first 3 octets will remain unchanged. If the 4th octet is not 00, it will also be used. The others will be randomly generated.
* - ``bgp_drscheduler_driver`` = ``neutron.services.bgp.scheduler.bgp_dragent_scheduler.ChanceScheduler``
- (StrOpt) Driver used for scheduling BGP speakers to BGP DrAgent
* - ``bind_host`` = ``0.0.0.0``
- (StrOpt) The host IP to bind to
* - ``bind_port`` = ``9696``
@ -45,11 +47,11 @@
* - ``dhcp_agents_per_network`` = ``1``
- (IntOpt) Number of DHCP agents scheduled to host a tenant network. If this number is greater than 1, the scheduler automatically assigns multiple DHCP agents for a given tenant network, providing high availability for DHCP service.
* - ``dhcp_broadcast_reply`` = ``False``
- (BoolOpt) Use broadcast in DHCP replies
- (BoolOpt) Use broadcast in DHCP replies.
* - ``dhcp_confs`` = ``$state_path/dhcp``
- (StrOpt) Location to store DHCP server config files
- (StrOpt) Location to store DHCP server config files.
* - ``dhcp_domain`` = ``openstacklocal``
- (StrOpt) Domain to use for building the hostnames.This option is deprecated. It has been moved to neutron.conf as dns_domain. It will removed from here in a future release
- (StrOpt) Domain to use for building the hostnames. This option is deprecated. It has been moved to neutron.conf as dns_domain. It will be removed in a future release.
* - ``dhcp_lease_duration`` = ``86400``
- (IntOpt) DHCP lease duration (in seconds). Use -1 to tell dnsmasq to use infinite lease times.
* - ``dhcp_load_type`` = ``networks``
@ -62,8 +64,10 @@
- (BoolOpt) Enable services on an agent with admin_state_up False. If this option is False, when admin_state_up of an agent is turned False, services on it will be disabled. Agents with admin_state_up False are not selected for automatic scheduling regardless of this option. But manual scheduling to such agents is available if this option is True.
* - ``executor_thread_pool_size`` = ``64``
- (IntOpt) Size of executor thread pool.
* - ``external_dns_driver`` = ``None``
- (StrOpt) Driver for external DNS integration.
* - ``force_gateway_on_subnet`` = ``True``
- (BoolOpt) Ensure that configured gateway is on subnet. For IPv6, validate only if gateway is not a link local address.
- (BoolOpt) Ensure that configured gateway is on subnet. For IPv6, validate only if gateway is not a link local address. Deprecated, to be removed during the Newton release, at which point the gateway will not be forced on to subnet.
* - ``ip_lib_force_root`` = ``False``
- (BoolOpt) Force ip_lib calls to use the root helper
* - ``ipam_driver`` = ``None``
@ -76,12 +80,14 @@
- (IntOpt) Maximum number of DNS nameservers per subnet
* - ``max_fixed_ips_per_port`` = ``5``
- (IntOpt) Maximum number of fixed ips per port. This option is deprecated and will be removed in the N release.
* - ``max_rtr_adv_interval`` = ``100``
- (IntOpt) MaxRtrAdvInterval setting for radvd.conf
* - ``max_subnet_host_routes`` = ``20``
- (IntOpt) Maximum number of host routes per subnet
* - ``memcached_servers`` = ``None``
- (ListOpt) Memcached servers or None for in process cache.
* - ``password`` =
- (StrOpt) Password for Redis server (optional).
* - ``min_rtr_adv_interval`` = ``30``
- (IntOpt) MinRtrAdvInterval setting for radvd.conf
* - ``periodic_fuzzy_delay`` = ``5``
- (IntOpt) Range of seconds to randomly delay when starting the periodic task scheduler to reduce stampeding. (Disable by setting to 0)
* - ``periodic_interval`` = ``40``
@ -92,6 +98,8 @@
- (StrOpt) Where to store Neutron state files. This directory must be writable by the agent.
* - ``vlan_transparent`` = ``False``
- (BoolOpt) If True, then allow plugins that support it to create VLAN transparent networks.
* - ``web_framework`` = ``legacy``
- (StrOpt) This will choose the web framework in which to run the Neutron API server. 'pecan' is a new experiemental rewrite of the API server.
* - **[AGENT]**
-
* - ``check_child_processes_action`` = ``respawn``

View File

@ -36,7 +36,7 @@
- (IntOpt) Seconds between retries of a database transaction.
* - ``idle_timeout`` = ``3600``
- (IntOpt) Timeout before idle SQL connections are reaped.
* - ``max_overflow`` = ``None``
* - ``max_overflow`` = ``50``
- (IntOpt) If set, use this value for max_overflow with SQLAlchemy.
* - ``max_pool_size`` = ``None``
- (IntOpt) Maximum number of SQL connections to keep open in a pool.

View File

@ -0,0 +1,40 @@
..
Warning: Do not edit this file. It is automatically generated from the
software project's code and your changes will be overwritten.
The tool to generate this file lives in openstack-doc-tools repository.
Please make any changes needed in the code, then run the
autogenerate-config-doc tool from the openstack-doc-tools repository, or
ask for help on the documentation mailing list, IRC channel or meeting.
.. _neutron-designate:
.. list-table:: Description of designate configuration options
:header-rows: 1
:class: config-ref-table
* - Configuration option = Default value
- Description
* - **[designate]**
-
* - ``admin_auth_url`` = ``None``
- (StrOpt) Authorization URL for connecting to designate in admin context
* - ``admin_password`` = ``None``
- (StrOpt) Password for connecting to designate in admin context
* - ``admin_tenant_id`` = ``None``
- (StrOpt) Tenant id for connecting to designate in admin context
* - ``admin_tenant_name`` = ``None``
- (StrOpt) Tenant name for connecting to designate in admin context
* - ``admin_username`` = ``None``
- (StrOpt) Username for connecting to designate in admin context
* - ``allow_reverse_dns_lookup`` = ``True``
- (BoolOpt) Allow the creation of PTR records
* - ``ipv4_ptr_zone_prefix_size`` = ``24``
- (IntOpt) Number of bits in an ipv4 PTR zone that will be considered network prefix. It has to align to byte boundary. Minimum value is 8. Maximum value is 24. As a consequence, range of values is 8, 16 and 24
* - ``ipv6_ptr_zone_prefix_size`` = ``120``
- (IntOpt) Number of bits in an ipv6 PTR zone that will be considered network prefix. It has to align to nyble boundary. Minimum value is 4. Maximum value is 124. As a consequence, range of values is 4, 8, 12, 16,..., 124
* - ``ptr_zone_email`` =
- (StrOpt) The email address to be used when creating PTR zones. If not specified, the email address will be admin@<dns_domain>
* - ``url`` = ``None``
- (StrOpt) URL for connecting to designate

View File

@ -18,18 +18,20 @@
- Description
* - **[DEFAULT]**
-
* - ``advertise_mtu`` = ``False``
- (BoolOpt) If True, effort is made to advertise MTU settings to VMs via network methods (DHCP and RA MTU options) when the network's preferred MTU is known.
* - ``advertise_mtu`` = ``True``
- (BoolOpt) If True, advertise network MTU values if core plugin calculates them. MTU is advertised to running instances via DHCP and RA MTU options.
* - ``dhcp_driver`` = ``neutron.agent.linux.dhcp.Dnsmasq``
- (StrOpt) The driver used to manage the DHCP server.
* - ``dnsmasq_base_log_dir`` = ``None``
- (StrOpt) Base log dir for dnsmasq logging. The log contains DHCP and DNS log information and is useful for debugging issues with either DHCP or DNS. If this section is null, disable dnsmasq log.
* - ``dnsmasq_config_file`` =
- (StrOpt) Override the default dnsmasq settings with this file
- (StrOpt) Override the default dnsmasq settings with this file.
* - ``dnsmasq_dns_servers`` = ``None``
- (ListOpt) Comma-separated list of the DNS servers which will be used as forwarders.
* - ``dnsmasq_lease_max`` = ``16777216``
- (IntOpt) Limit number of leases to prevent a denial-of-service.
* - ``dnsmasq_local_resolv`` = ``False``
- (BoolOpt) Enables the dnsmasq service to provide name resolution for instances via DNS resolvers on the host running the DHCP agent. Effectively removes the '--no-resolv' option from the dnsmasq process arguments. Adding custom DNS resolvers to the 'dnsmasq_dns_servers' option disables this feature.
* - ``enable_isolated_metadata`` = ``False``
- (BoolOpt) The DHCP server can assist with providing metadata support on isolated networks. Setting this value to True will cause the DHCP server to append specific host routes to the DHCP request. The metadata service will only be activated when the subnet does not contain any router port. The guest instance must be configured to request host routes via DHCP (Option 121). This option doesn't have any effect when force_metadata is set to True.
* - ``enable_metadata_network`` = ``False``

View File

@ -18,6 +18,8 @@
- Description
* - **[certificates]**
-
* - ``barbican_auth`` = ``barbican_acl_auth``
- (StrOpt) Name of the Barbican authentication method to use
* - ``cert_manager_type`` = ``barbican``
- (StrOpt) Certificate Manager plugin. Defaults to barbican.
* - ``storage_path`` = ``/var/lib/neutron-lbaas/certificates/``

View File

@ -19,7 +19,7 @@
* - **[DEFAULT]**
-
* - ``debug`` = ``False``
- (BoolOpt) Print debugging output (set logging level to DEBUG instead of default INFO level).
- (BoolOpt) If set to true, the logging level will be set to DEBUG instead of the default INFO level.
* - ``device_driver`` = ``['neutron_lbaas.drivers.haproxy.namespace_driver.HaproxyNSDriver']``
- (MultiStrOpt) Drivers used to manage loadbalancing devices
* - ``interface_driver`` = ``None``

View File

@ -16,6 +16,10 @@
* - Configuration option = Default value
- Description
* - **[AGENT]**
-
* - ``quitting_rpc_timeout`` = ``10``
- (IntOpt) Set new timeout in seconds for new rpc calls after agent receives SIGTERM. If value is set to 0, rpc timeout won't be changed
* - **[LINUX_BRIDGE]**
-
* - ``bridge_mappings`` =

View File

@ -19,9 +19,9 @@
* - **[DEFAULT]**
-
* - ``debug`` = ``False``
- (BoolOpt) Print debugging output (set logging level to DEBUG instead of default INFO level).
* - ``default_log_levels`` = ``amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN, requests.packages.urllib3.util.retry=WARN, urllib3.util.retry=WARN, keystonemiddleware=WARN, routes.middleware=WARN, stevedore=WARN, taskflow=WARN``
- (ListOpt) List of logger=LEVEL pairs. This option is ignored if log_config_append is set.
- (BoolOpt) If set to true, the logging level will be set to DEBUG instead of the default INFO level.
* - ``default_log_levels`` = ``amqp=WARN, amqplib=WARN, boto=WARN, qpid=WARN, sqlalchemy=WARN, suds=INFO, oslo.messaging=INFO, iso8601=WARN, requests.packages.urllib3.connectionpool=WARN, urllib3.connectionpool=WARN, websocket=WARN, requests.packages.urllib3.util.retry=WARN, urllib3.util.retry=WARN, keystonemiddleware=WARN, routes.middleware=WARN, stevedore=WARN, taskflow=WARN, keystoneauth=WARN, oslo.cache=INFO, dogpile.core.dogpile=INFO``
- (ListOpt) List of package logging levels in logger=LEVEL pairs. This option is ignored if log_config_append is set.
* - ``fatal_deprecations`` = ``False``
- (BoolOpt) Enables or disables fatal status of deprecations.
* - ``instance_format`` = ``"[instance: %(uuid)s] "``
@ -29,25 +29,23 @@
* - ``instance_uuid_format`` = ``"[instance: %(uuid)s] "``
- (StrOpt) The format for an instance UUID that is passed with the log message.
* - ``log_config_append`` = ``None``
- (StrOpt) The name of a logging configuration file. This file is appended to any existing logging configuration files. For details about logging configuration files, see the Python logging module documentation. Note that when logging configuration files are used then all logging configuration is set in the configuration file and other logging configuration options are ignored (for example, log_format).
- (StrOpt) The name of a logging configuration file. This file is appended to any existing logging configuration files. For details about logging configuration files, see the Python logging module documentation. Note that when logging configuration files are used then all logging configuration is set in the configuration file and other logging configuration options are ignored (for example, logging_context_format_string).
* - ``log_date_format`` = ``%Y-%m-%d %H:%M:%S``
- (StrOpt) Format string for %%(asctime)s in log records. Default: %(default)s . This option is ignored if log_config_append is set.
- (StrOpt) Defines the format string for %%(asctime)s in log records. Default: %(default)s . This option is ignored if log_config_append is set.
* - ``log_dir`` = ``None``
- (StrOpt) (Optional) The base directory used for relative --log-file paths. This option is ignored if log_config_append is set.
- (StrOpt) (Optional) The base directory used for relative log_file paths. This option is ignored if log_config_append is set.
* - ``log_file`` = ``None``
- (StrOpt) (Optional) Name of log file to output to. If no default is set, logging will go to stdout. This option is ignored if log_config_append is set.
* - ``log_format`` = ``None``
- (StrOpt) DEPRECATED. A logging.Formatter log message format string which may use any of the available logging.LogRecord attributes. This option is deprecated. Please use logging_context_format_string and logging_default_format_string instead. This option is ignored if log_config_append is set.
- (StrOpt) (Optional) Name of log file to send logging output to. If no default is set, logging will go to stderr as defined by use_stderr. This option is ignored if log_config_append is set.
* - ``logging_context_format_string`` = ``%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s``
- (StrOpt) Format string to use for log messages with context.
* - ``logging_debug_format_suffix`` = ``%(funcName)s %(pathname)s:%(lineno)d``
- (StrOpt) Data to append to log format when level is DEBUG.
- (StrOpt) Additional data to append to log message when logging level for the message is DEBUG.
* - ``logging_default_format_string`` = ``%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s``
- (StrOpt) Format string to use for log messages without context.
- (StrOpt) Format string to use for log messages when context is undefined.
* - ``logging_exception_prefix`` = ``%(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s``
- (StrOpt) Prefix each line of exception output with this format.
* - ``logging_user_identity_format`` = ``%(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s``
- (StrOpt) Format string for user_identity field of the logging_context_format_string
- (StrOpt) Defines the format string for %(user_identity)s that is used in logging_context_format_string.
* - ``publish_errors`` = ``False``
- (BoolOpt) Enables or disables publication of error events.
* - ``syslog_log_facility`` = ``LOG_USER``
@ -58,12 +56,10 @@
- (BoolOpt) Log output to standard error. This option is ignored if log_config_append is set.
* - ``use_syslog`` = ``False``
- (BoolOpt) Use syslog for logging. Existing syslog format is DEPRECATED and will be changed later to honor RFC5424. This option is ignored if log_config_append is set.
* - ``use_syslog_rfc_format`` = ``True``
- (BoolOpt) (Optional) Enables or disables syslog rfc5424 format for logging. If enabled, prefixes the MSG part of the syslog message with APP-NAME (RFC5424). The format without the APP-NAME is deprecated in Kilo, and will be removed in Mitaka, along with this option. This option is ignored if log_config_append is set.
* - ``verbose`` = ``True``
- (BoolOpt) If set to false, will disable INFO logging level, making WARNING the default.
- (BoolOpt) If set to false, the logging level will be set to WARNING instead of the default INFO level.
* - ``watch_log_file`` = ``False``
- (BoolOpt) (Optional) Uses logging handler designed to watch file system. When log file is moved or removed this handler will open a new log file with specified path instantaneously. It makes sense only if log-file option is specified and Linux platform is used. This option is ignored if log_config_append is set.
- (BoolOpt) Uses logging handler designed to watch file system. When log file is moved or removed this handler will open a new log file with specified path instantaneously. It makes sense only if log_file option is specified and Linux platform is used. This option is ignored if log_config_append is set.
* - ``wsgi_log_format`` = ``%(client_ip)s "%(request_line)s" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f``
- (StrOpt) A python format string that is used as the template to generate log lines. The following values can beformatted into it: client_ip, date_time, request_line, status_code, body_length, wall_seconds.
* - **[oslo_versionedobjects]**

View File

@ -36,7 +36,7 @@
- (StrOpt) User (uid or name) running metadata proxy after its initialization (if empty: agent effective user).
* - ``metadata_proxy_watch_log`` = ``None``
- (BoolOpt) Enable/Disable log watch by metadata proxy. It should be disabled when metadata_proxy_user/group is not allowed to read/write its log file and copytruncate logrotate option must be used if logrotate is enabled on metadata proxy log files. Option default value is deduced from metadata_proxy_user: watch log is enabled if metadata_proxy_user is agent effective user id/name.
* - ``metadata_workers`` = ``2``
* - ``metadata_workers`` = ``1``
- (IntOpt) Number of separate worker processes for metadata server (defaults to half of the number of CPUs)
* - ``nova_metadata_insecure`` = ``False``
- (BoolOpt) Allow to perform insecure SSL (https) requests to nova metadata

View File

@ -24,8 +24,8 @@
- (StrOpt) Default network type for external networks when no provider attributes are specified. By default it is None, which means that if provider attributes are not specified while creating external networks then they will have the same type as tenant networks. Allowed values for external_network_type config option depend on the network type values configured in type_drivers config option.
* - ``mechanism_drivers`` =
- (ListOpt) An ordered list of networking mechanism driver entrypoints to be loaded from the neutron.ml2.mechanism_drivers namespace.
* - ``path_mtu`` = ``0``
- (IntOpt) The maximum permissible size of an unfragmented packet travelling from and to addresses where encapsulated Neutron traffic is sent. Drivers calculate maximum viable MTU for validating tenant requests based on this value (typically, path_mtu - maxmum encapsulation header size). If <= 0, the path MTU is indeterminate and no calculation takes place.
* - ``path_mtu`` = ``1500``
- (IntOpt) Maximum size of an IP packet (MTU) that can traverse the underlying physical network infrastructure without fragmentation. For instances using a self-service/private network, neutron subtracts the overlay protocol overhead from this value and provides it to instances via DHCP option 26. For example, using a value of 9000, DHCP provides 8950 to instances using a VXLAN network that contains 50 bytes of overhead. Using a value of 0 disables this feature and instances typically default to a 1500 MTU. Only impacts instances, not neutron network components such as bridges and routers.
* - ``physical_network_mtus`` =
- (ListOpt) A list of mappings of physical networks to MTU values. The format of the mapping is <physnet>:<mtu val>. This mapping allows specifying a physical network MTU value that differs from the default segment_mtu value.
* - ``segment_mtu`` = ``0``

View File

@ -18,14 +18,16 @@
- Description
* - **[nova]**
-
* - ``auth_plugin`` = ``None``
- (StrOpt) Name of the plugin to load
* - ``auth_section`` = ``None``
- (StrOpt) Config Section from which to load plugin specific options
- (Opt) Config Section from which to load plugin specific options
* - ``auth_type`` = ``None``
- (Opt) Authentication type to load
* - ``cafile`` = ``None``
- (StrOpt) PEM encoded Certificate Authority to use when verifying HTTPs connections.
* - ``certfile`` = ``None``
- (StrOpt) PEM encoded client certificate cert file
* - ``endpoint_type`` = ``public``
- (StrOpt) Type of the nova endpoint to use. This endpoint will be looked up in the keystone catalog and should be one of public, internal or admin.
* - ``insecure`` = ``False``
- (BoolOpt) Verify HTTPS connections.
* - ``keyfile`` = ``None``

View File

@ -41,7 +41,7 @@
* - ``ovsdb_monitor_respawn_interval`` = ``30``
- (IntOpt) The number of seconds to wait before respawning the ovsdb monitor after losing communication with it.
* - ``prevent_arp_spoofing`` = ``True``
- (BoolOpt) Enable suppression of ARP responses that don't match an IP address that belongs to the port from which they originate. Note: This prevents the VMs attached to this agent from spoofing, it doesn't protect them from other devices which have the capability to spoof (e.g. bare metal or VMs attached to agents without this flag set to True). Spoofing rules will not be added to any ports that have port security disabled. For LinuxBridge, this requires ebtables. For OVS, it requires a version that supports matching ARP headers.
- (BoolOpt) Enable suppression of ARP responses that don't match an IP address that belongs to the port from which they originate. Note: This prevents the VMs attached to this agent from spoofing, it doesn't protect them from other devices which have the capability to spoof (e.g. bare metal or VMs attached to agents without this flag set to True). Spoofing rules will not be added to any ports that have port security disabled. For LinuxBridge, this requires ebtables. For OVS, it requires a version that supports matching ARP headers. This option will be removed in Newton so the only way to disable protection will be via the port security extension.
* - ``quitting_rpc_timeout`` = ``10``
- (IntOpt) Set new timeout in seconds for new rpc calls after agent receives SIGTERM. If value is set to 0, rpc timeout won't be changed
* - ``tunnel_csum`` = ``False``

View File

@ -1,48 +0,0 @@
..
Warning: Do not edit this file. It is automatically generated from the
software project's code and your changes will be overwritten.
The tool to generate this file lives in openstack-doc-tools repository.
Please make any changes needed in the code, then run the
autogenerate-config-doc tool from the openstack-doc-tools repository, or
ask for help on the documentation mailing list, IRC channel or meeting.
.. _neutron-qpid:
.. list-table:: Description of Qpid configuration options
:header-rows: 1
:class: config-ref-table
* - Configuration option = Default value
- Description
* - **[oslo_messaging_qpid]**
-
* - ``amqp_auto_delete`` = ``False``
- (BoolOpt) Auto-delete queues in AMQP.
* - ``amqp_durable_queues`` = ``False``
- (BoolOpt) Use durable queues in AMQP.
* - ``qpid_heartbeat`` = ``60``
- (IntOpt) Seconds between connection keepalive heartbeats.
* - ``qpid_hostname`` = ``localhost``
- (StrOpt) Qpid broker hostname.
* - ``qpid_hosts`` = ``$qpid_hostname:$qpid_port``
- (ListOpt) Qpid HA cluster host:port pairs.
* - ``qpid_password`` =
- (StrOpt) Password for Qpid connection.
* - ``qpid_port`` = ``5672``
- (IntOpt) Qpid broker port.
* - ``qpid_protocol`` = ``tcp``
- (StrOpt) Transport to use, either 'tcp' or 'ssl'.
* - ``qpid_receiver_capacity`` = ``1``
- (IntOpt) The number of prefetched messages held by receiver.
* - ``qpid_sasl_mechanisms`` =
- (StrOpt) Space separated list of SASL mechanisms to use for auth.
* - ``qpid_tcp_nodelay`` = ``True``
- (BoolOpt) Whether to disable the Nagle algorithm.
* - ``qpid_topology_version`` = ``1``
- (IntOpt) The qpid topology version to use. Version 1 is what was originally used by impl_qpid. Version 2 includes some backwards-incompatible changes that allow broker federation to work. Users should update to version 2 when they are able to take everything down, as it requires a clean break.
* - ``qpid_username`` =
- (StrOpt) Username for Qpid connection.
* - ``send_single_reply`` = ``False``
- (BoolOpt) Send a single AMQP reply to call message. The current behaviour since oslo-incubator is to send two AMQP replies - first one with the payload, a second one to ensure the other have finish to send the payload. We are going to remove it in the N release, but we must keep backward compatible at the same time. This option provides such compatibility - it defaults to False in Liberty and can be turned on for early adopters with a new installations or for testing. Please note, that this option will be removed in the Mitaka release.

View File

@ -52,7 +52,7 @@
- (IntOpt) Number of pools allowed per tenant. A negative value means unlimited.
* - ``quota_port`` = ``50``
- (IntOpt) Number of ports allowed per tenant. A negative value means unlimited.
* - ``quota_rbac_entry`` = ``10``
* - ``quota_rbac_policy`` = ``10``
- (IntOpt) Default number of RBAC entries allowed per tenant. A negative value means unlimited.
* - ``quota_router`` = ``10``
- (IntOpt) Number of routers allowed per tenant. A negative value means unlimited.

View File

@ -28,10 +28,14 @@
- (IntOpt) How often times during the heartbeat_timeout_threshold we check the heartbeat.
* - ``heartbeat_timeout_threshold`` = ``60``
- (IntOpt) Number of seconds after which the Rabbit broker is considered down if heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL
* - ``kombu_compression`` = ``None``
- (StrOpt) EXPERIMENTAL: Possible values are: gzip, bz2. If not set compression will not be used. This option may notbe available in future versions.
* - ``kombu_failover_strategy`` = ``round-robin``
- (StrOpt) Determines how the next RabbitMQ node is chosen in case the one we are currently connected to becomes unavailable. Takes effect only if more than one RabbitMQ node is provided in config.
* - ``kombu_missing_consumer_retry_timeout`` = ``60``
- (IntOpt) How long to wait a missing client beforce abandoning to send it its replies. This value should not be longer than rpc_response_timeout.
* - ``kombu_reconnect_delay`` = ``1.0``
- (FloatOpt) How long to wait before reconnecting in response to an AMQP consumer cancel notification.
* - ``kombu_reconnect_timeout`` = ``60``
- (IntOpt) How long to wait before considering a reconnect attempt to have failed. This value should not be longer than rpc_response_timeout.
* - ``kombu_ssl_ca_certs`` =
- (StrOpt) SSL certification authority file (valid only if SSL enabled).
* - ``kombu_ssl_certfile`` =
@ -46,6 +50,8 @@
- (StrOpt) The RabbitMQ broker address where a single node is used.
* - ``rabbit_hosts`` = ``$rabbit_host:$rabbit_port``
- (ListOpt) RabbitMQ HA cluster host:port pairs.
* - ``rabbit_interval_max`` = ``30``
- (IntOpt) Maximum interval of RabbitMQ connection retries. Default is 30 seconds.
* - ``rabbit_login_method`` = ``AMQPLAIN``
- (StrOpt) The RabbitMQ login method.
* - ``rabbit_max_retries`` = ``0``
@ -53,16 +59,18 @@
* - ``rabbit_password`` = ``guest``
- (StrOpt) The RabbitMQ password.
* - ``rabbit_port`` = ``5672``
- (IntOpt) The RabbitMQ broker port where a single node is used.
- (PortOpt) The RabbitMQ broker port where a single node is used.
* - ``rabbit_qos_prefetch_count`` = ``0``
- (IntOpt) Specifies the number of messages to prefetch. Setting to zero allows unlimited messages.
* - ``rabbit_retry_backoff`` = ``2``
- (IntOpt) How long to backoff for between retries when connecting to RabbitMQ.
* - ``rabbit_retry_interval`` = ``1``
- (IntOpt) How frequently to retry connecting with RabbitMQ.
* - ``rabbit_transient_queues_ttl`` = ``600``
- (IntOpt) Positive integer representing duration in seconds for queue TTL (x-expires). Queues which are unused for the duration of the TTL are automatically deleted. The parameter affects only reply and fanout queues.
* - ``rabbit_use_ssl`` = ``False``
- (BoolOpt) Connect over SSL for RabbitMQ.
* - ``rabbit_userid`` = ``guest``
- (StrOpt) The RabbitMQ userid.
* - ``rabbit_virtual_host`` = ``/``
- (StrOpt) The RabbitMQ virtual host.
* - ``send_single_reply`` = ``False``
- (BoolOpt) Send a single AMQP reply to call message. The current behaviour since oslo-incubator is to send two AMQP replies - first one with the payload, a second one to ensure the other have finish to send the payload. We are going to remove it in the N release, but we must keep backward compatible at the same time. This option provides such compatibility - it defaults to False in Liberty and can be turned on for early adopters with a new installations or for testing. Please note, that this option will be removed in the Mitaka release.

View File

@ -18,9 +18,19 @@
- Description
* - **[matchmaker_redis]**
-
* - ``check_timeout`` = ``20000``
- (IntOpt) Time in ms to wait before the transaction is killed.
* - ``host`` = ``127.0.0.1``
- (StrOpt) Host to locate redis.
* - ``password`` =
- (StrOpt) Password for Redis server (optional).
* - ``port`` = ``6379``
- (IntOpt) Use this port to connect to redis host.
- (PortOpt) Use this port to connect to redis host.
* - ``sentinel_group_name`` = ``oslo-messaging-zeromq``
- (StrOpt) Redis replica set name.
* - ``sentinel_hosts`` =
- (ListOpt) List of Redis Sentinel hosts (fault tolerance mode) e.g. [host:port, host1:port ... ]
* - ``socket_timeout`` = ``1000``
- (IntOpt) Timeout in ms on blocking socket operations
* - ``wait_timeout`` = ``500``
- (IntOpt) Time in ms to wait between connection attempts.

View File

@ -19,9 +19,9 @@
* - **[DEFAULT]**
-
* - ``rpc_backend`` = ``rabbit``
- (StrOpt) The messaging driver to use, defaults to rabbit. Other drivers include qpid and zmq.
* - ``rpc_cast_timeout`` = ``30``
- (IntOpt) Seconds to wait before a cast expires (TTL). Only supported by impl_zmq.
- (StrOpt) The messaging driver to use, defaults to rabbit. Other drivers include amqp and zmq.
* - ``rpc_cast_timeout`` = ``-1``
- (IntOpt) Seconds to wait before a cast expires (TTL). The default value of -1 specifies an infinite linger period. The value of 0 specifies no linger period. Pending messages shall be discarded immediately when the socket is closed. Only supported by impl_zmq.
* - ``rpc_conn_pool_size`` = ``30``
- (IntOpt) Size of RPC connection pool.
* - ``rpc_poll_timeout`` = ``1``
@ -38,6 +38,10 @@
- (BoolOpt) Enables or disables inter-process locks.
* - ``lock_path`` = ``None``
- (StrOpt) Directory to use for lock files. For security, the specified directory should only be writable by the user running the processes that need locking. Defaults to environment variable OSLO_LOCK_PATH. If external locks are used, a lock path must be set.
* - **[oslo_messaging]**
-
* - ``event_stream_topic`` = ``neutron_lbaas_event``
- (StrOpt) topic name for receiving events from a queue
* - **[oslo_messaging_amqp]**
-
* - ``allow_insecure_clients`` = ``False``

View File

@ -32,6 +32,8 @@
- (StrOpt) Authentication endpoint
* - ``auth_version`` = ``2``
- (StrOpt) The auth version used to authenticate
* - ``endpoint_type`` = ``public``
- (StrOpt) The endpoint_type to be used
* - ``region`` = ``RegionOne``
- (StrOpt) The deployment region
* - ``service_name`` = ``lbaas``

View File

@ -18,5 +18,5 @@
- Description
* - **[vpnagent]**
-
* - ``vpn_device_driver`` = ``['neutron_vpnaas.services.vpn.device_drivers.ipsec.OpenSwanDriver']``
* - ``vpn_device_driver`` = ``['neutron_vpnaas.services.vpn.device_drivers.ipsec.OpenSwanDriver, neutron_vpnaas.services.vpn.device_drivers.cisco_ipsec.CiscoCsrIPsecDriver, neutron_vpnaas.services.vpn.device_drivers.vyatta_ipsec.VyattaIPSecDriver, neutron_vpnaas.services.vpn.device_drivers.strongswan_ipsec.StrongSwanDriver, neutron_vpnaas.services.vpn.device_drivers.fedora_strongswan_ipsec.FedoraStrongSwanDriver, neutron_vpnaas.services.vpn.device_drivers.libreswan_ipsec.LibreSwanDriver']``
- (MultiStrOpt) The vpn device drivers Neutron will use

View File

@ -21,7 +21,7 @@
* - ``config_base_dir`` = ``$state_path/ipsec``
- (StrOpt) Location to store ipsec server config files
* - ``enable_detailed_logging`` = ``False``
- (BoolOpt) Enable detail logging for ipsec pluto process. If the flag set to True, the detailed logging will be written into config_base_dir/<pid>/log.
- (BoolOpt) Enable detail logging for ipsec pluto process. If the flag set to True, the detailed logging will be written into config_base_dir/<pid>/log. Note: This setting applies to OpenSwan and LibreSwan only. StrongSwan logs to syslog.
* - ``ipsec_status_check_interval`` = ``60``
- (IntOpt) Interval for checking ipsec status
* - **[pluto]**

View File

@ -18,8 +18,6 @@
- Description
* - **[DEFAULT]**
-
* - ``rpc_zmq_all_req_rep`` = ``True``
- (BoolOpt) Use REQ/REP pattern for all methods CALL/CAST/FANOUT.
* - ``rpc_zmq_bind_address`` = ``*``
- (StrOpt) ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP. The "host" option should point or resolve to this address.
* - ``rpc_zmq_bind_port_retries`` = ``100``
@ -37,8 +35,10 @@
* - ``rpc_zmq_max_port`` = ``65536``
- (IntOpt) Maximal port number for random ports range.
* - ``rpc_zmq_min_port`` = ``49152``
- (IntOpt) Minimal port number for random ports range.
- (PortOpt) Minimal port number for random ports range.
* - ``rpc_zmq_topic_backlog`` = ``None``
- (IntOpt) Maximum number of ingress messages to locally buffer per topic. Default is unlimited.
* - ``zmq_use_broker`` = ``True``
- (BoolOpt) Shows whether zmq-messaging uses broker or not.
* - ``use_pub_sub`` = ``True``
- (BoolOpt) Use PUB/SUB pattern for fanout methods. PUB/SUB always uses proxy.
* - ``zmq_target_expire`` = ``120``
- (IntOpt) Expiration timeout in seconds of a name service record about existing target ( < 0 means no timeout).

View File

@ -14,6 +14,7 @@ auth_ca_cert common
auth_strategy common
backlog api
base_mac common
bgp_drscheduler_driver common
bind_host common
bind_port common
client_socket_timeout api
@ -38,6 +39,7 @@ dnsmasq_base_log_dir dhcp_agent
dnsmasq_config_file dhcp_agent
dnsmasq_dns_servers dhcp_agent
dnsmasq_lease_max dhcp_agent
dnsmasq_local_resolv dhcp_agent
driver metering_agent
dvr_base_mac dvr
enable_isolated_metadata dhcp_agent
@ -47,6 +49,7 @@ enable_new_agents common
enable_services_on_agents_with_admin_state_down common
enable_snat_by_default l3_agent
executor_thread_pool_size common
external_dns_driver common
external_ingress_mark l3_agent
external_network_bridge l3_agent
external_pids agent
@ -77,7 +80,6 @@ log_config_append logging
log_date_format logging
log_dir logging
log_file logging
log_format logging
logging_context_format_string logging
logging_debug_format_suffix logging
logging_default_format_string logging
@ -90,6 +92,7 @@ max_fixed_ips_per_port common
max_header_line api
max_l3_agents_per_router l3_agent
max_routes quotas
max_rtr_adv_interval common
max_subnet_host_routes common
measure_interval metering_agent
memcached_servers common
@ -104,12 +107,10 @@ metadata_proxy_user metadata
metadata_proxy_watch_log metadata
metadata_workers metadata
min_l3_agents_per_router l3_agent
min_rtr_adv_interval common
network_auto_schedule scheduler
network_device_mtu agent
network_scheduler_driver scheduler
notification_driver amqp
notification_topics amqp
notification_transport_url amqp
notify_nova_on_port_data_changes compute
notify_nova_on_port_status_changes compute
nova_client_cert compute
@ -123,12 +124,10 @@ ovs_integration_bridge openvswitch_agent
ovs_use_veth openvswitch_agent
ovs_vsctl_timeout openvswitch_agent
pagination_max_limit api
password common
pd_confs pd_linux_agent
pd_dhcp_driver pd_linux_agent
periodic_fuzzy_delay common
periodic_interval common lbaas_agent
port api
prefix_delegation_driver agent
publish_errors logging
ra_confs ipv6_ra
@ -146,7 +145,6 @@ rpc_poll_timeout rpc
rpc_response_timeout rpc
rpc_state_report_workers rpc
rpc_workers rpc
rpc_zmq_all_req_rep zeromq
rpc_zmq_bind_address zeromq
rpc_zmq_bind_port_retries zeromq
rpc_zmq_concurrency zeromq
@ -164,18 +162,19 @@ state_path common
syslog_log_facility logging
tcp_keepidle api
transport_url amqp
use_pub_sub zeromq
use_ssl logging
use_stderr logging
use_syslog logging
use_syslog_rfc_format logging
vendor_pen pd_linux_agent
verbose logging
vlan_transparent common
watch_log_file logging
web_framework common
wsgi_default_pool_size api
wsgi_keep_alive api
wsgi_log_format logging
zmq_use_broker zeromq
zmq_target_expire zeromq
AGENT/agent_type agent
AGENT/arp_responder openvswitch_agent
AGENT/availability_zone agent
@ -218,7 +217,6 @@ OVS/tun_peer_patch_port openvswitch_agent
OVS/tunnel_bridge openvswitch_agent
OVS/use_veth_interconnection openvswitch_agent
OVS/vhostuser_socket_dir openvswitch_agent
PHYSICAL_INTERFACE/physical_interface brocade
QUOTAS/default_quota quotas
QUOTAS/quota_driver quotas
QUOTAS/quota_firewall quotas
@ -234,7 +232,7 @@ QUOTAS/quota_member quotas
QUOTAS/quota_network quotas
QUOTAS/quota_pool quotas
QUOTAS/quota_port quotas
QUOTAS/quota_rbac_entry quotas
QUOTAS/quota_rbac_policy quotas
QUOTAS/quota_router quotas
QUOTAS/quota_security_group quotas
QUOTAS/quota_security_group_rule quotas
@ -246,10 +244,6 @@ SECURITYGROUP/enable_security_group securitygroups
SECURITYGROUP/firewall_driver securitygroups
SRIOV_NIC/exclude_devices sriov
SRIOV_NIC/physical_device_mappings sriov
SWITCH/address brocade
SWITCH/ostype brocade
SWITCH/password brocade
SWITCH/username brocade
VXLAN/enable_vxlan linuxbridge_agent
VXLAN/l2_population linuxbridge_agent
VXLAN/local_ip linuxbridge_agent
@ -257,6 +251,7 @@ VXLAN/tos linuxbridge_agent
VXLAN/ttl linuxbridge_agent
VXLAN/vxlan_group linuxbridge_agent
agent/extensions l2_agent
certificates/barbican_auth lbaas
certificates/cert_manager_type lbaas
certificates/storage_path lbaas
cisco_csr_ipsec/status_check_interval cisco
@ -292,6 +287,16 @@ database/slave_connection database
database/sqlite_db database
database/sqlite_synchronous database
database/use_db_reconnect database
designate/admin_auth_url designate
designate/admin_password designate
designate/admin_tenant_id designate
designate/admin_tenant_name designate
designate/admin_username designate
designate/allow_reverse_dns_lookup designate
designate/ipv4_ptr_zone_prefix_size designate
designate/ipv6_ptr_zone_prefix_size designate
designate/ptr_zone_email designate
designate/url designate
fwaas/driver nec
fwaas/enabled fwaas
haproxy/interface_driver lbaas_services
@ -342,9 +347,14 @@ keystone_authtoken/revocation_cache_time auth_token
keystone_authtoken/signing_dir auth_token
keystone_authtoken/token_cache_time auth_token
l2pop/agent_boot_time ml2_l2pop
matchmaker_redis/check_timeout redis
matchmaker_redis/host redis
matchmaker_redis/password redis
matchmaker_redis/port redis
matchmaker_redis/sentinel_group_name redis
matchmaker_redis/sentinel_hosts redis
matchmaker_redis/socket_timeout redis
matchmaker_redis/wait_timeout redis
ml2/extension_drivers ml2
ml2/external_network_type ml2
ml2/mechanism_drivers ml2
@ -353,13 +363,6 @@ ml2/physical_network_mtus ml2
ml2/segment_mtu ml2
ml2/tenant_network_types ml2
ml2/type_drivers ml2
ml2_brocade/address ml2_brocade
ml2_brocade/ostype ml2_brocade
ml2_brocade/osversion ml2_brocade
ml2_brocade/password ml2_brocade
ml2_brocade/physical_networks ml2_brocade
ml2_brocade/rbridge_id ml2_brocade
ml2_brocade/username ml2_brocade
ml2_sriov/supported_pci_vendor_devs ml2_sriov
ml2_type_flat/flat_networks ml2_flat
ml2_type_geneve/max_header_size ml2_geneve
@ -378,10 +381,11 @@ netscaler_driver/periodic_task_interval lbaas_services
ngfw/smc_api_auth_key fwaas_ngfw
ngfw/smc_api_version fwaas_ngfw
ngfw/smc_url fwaas_ngfw
nova/auth_plugin nova
nova/auth_section nova
nova/auth_type nova
nova/cafile nova
nova/certfile nova
nova/endpoint_type nova
nova/insecure nova
nova/keyfile nova
nova/region_name nova
@ -394,6 +398,7 @@ openswan/ipsec_config_template vpnaas_openswan
openswan/ipsec_secret_template vpnaas_openswan
oslo_concurrency/disable_process_locking rpc
oslo_concurrency/lock_path rpc
oslo_messaging/event_stream_topic rpc
oslo_messaging_amqp/allow_insecure_clients rpc
oslo_messaging_amqp/broadcast_prefix rpc
oslo_messaging_amqp/container_name rpc
@ -410,27 +415,18 @@ oslo_messaging_amqp/ssl_key_file rpc
oslo_messaging_amqp/ssl_key_password rpc
oslo_messaging_amqp/trace rpc
oslo_messaging_amqp/username rpc
oslo_messaging_qpid/amqp_auto_delete qpid
oslo_messaging_qpid/amqp_durable_queues qpid
oslo_messaging_qpid/qpid_heartbeat qpid
oslo_messaging_qpid/qpid_hostname qpid
oslo_messaging_qpid/qpid_hosts qpid
oslo_messaging_qpid/qpid_password qpid
oslo_messaging_qpid/qpid_port qpid
oslo_messaging_qpid/qpid_protocol qpid
oslo_messaging_qpid/qpid_receiver_capacity qpid
oslo_messaging_qpid/qpid_sasl_mechanisms qpid
oslo_messaging_qpid/qpid_tcp_nodelay qpid
oslo_messaging_qpid/qpid_topology_version qpid
oslo_messaging_qpid/qpid_username qpid
oslo_messaging_qpid/send_single_reply qpid
oslo_messaging_notifications/driver amqp
oslo_messaging_notifications/topics amqp
oslo_messaging_notifications/transport_url amqp
oslo_messaging_rabbit/amqp_auto_delete rabbitmq
oslo_messaging_rabbit/amqp_durable_queues rabbitmq
oslo_messaging_rabbit/fake_rabbit rabbitmq
oslo_messaging_rabbit/heartbeat_rate rabbitmq
oslo_messaging_rabbit/heartbeat_timeout_threshold rabbitmq
oslo_messaging_rabbit/kombu_compression rabbitmq
oslo_messaging_rabbit/kombu_failover_strategy rabbitmq
oslo_messaging_rabbit/kombu_missing_consumer_retry_timeout rabbitmq
oslo_messaging_rabbit/kombu_reconnect_delay rabbitmq
oslo_messaging_rabbit/kombu_reconnect_timeout rabbitmq
oslo_messaging_rabbit/kombu_ssl_ca_certs rabbitmq
oslo_messaging_rabbit/kombu_ssl_certfile rabbitmq
oslo_messaging_rabbit/kombu_ssl_keyfile rabbitmq
@ -438,16 +434,18 @@ oslo_messaging_rabbit/kombu_ssl_version rabbitmq
oslo_messaging_rabbit/rabbit_ha_queues rabbitmq
oslo_messaging_rabbit/rabbit_host rabbitmq
oslo_messaging_rabbit/rabbit_hosts rabbitmq
oslo_messaging_rabbit/rabbit_interval_max rabbitmq
oslo_messaging_rabbit/rabbit_login_method rabbitmq
oslo_messaging_rabbit/rabbit_max_retries rabbitmq
oslo_messaging_rabbit/rabbit_password rabbitmq
oslo_messaging_rabbit/rabbit_port rabbitmq
oslo_messaging_rabbit/rabbit_qos_prefetch_count rabbitmq
oslo_messaging_rabbit/rabbit_retry_backoff rabbitmq
oslo_messaging_rabbit/rabbit_retry_interval rabbitmq
oslo_messaging_rabbit/rabbit_transient_queues_ttl rabbitmq
oslo_messaging_rabbit/rabbit_use_ssl rabbitmq
oslo_messaging_rabbit/rabbit_userid rabbitmq
oslo_messaging_rabbit/rabbit_virtual_host rabbitmq
oslo_messaging_rabbit/send_single_reply rabbitmq
oslo_middleware/max_request_body_size api
oslo_middleware/secure_proxy_ssl_header api
oslo_policy/policy_default_rule api
@ -507,6 +505,7 @@ service_auth/admin_user service_auth
service_auth/admin_user_domain service_auth
service_auth/auth_url service_auth
service_auth/auth_version service_auth
service_auth/endpoint_type service_auth
service_auth/region service_auth
service_auth/service_name service_auth
service_providers/service_provider common