use_forwarded_for = False | (BoolOpt) Treat X-Forwarded-For as the canonical remote address. Only enable this if you have a sanitizing proxy. | -
[database] | -|
---|---|
use_tpool = False | -(BoolOpt) Enable the experimental use of thread pooling for all DB API calls | -
pxe_bootfile_name = pxelinux.0 | -(StrOpt) This gets passed to Neutron as the bootfile dhcp parameter when the dhcp_options_enabled is set. | +(StrOpt) This gets passed to Neutron as the bootfile dhcp parameter. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pxe_config_template = $pybasedir/nova/virt/baremetal/pxe_config.template | @@ -71,7 +71,7 @@(BoolOpt) If set, pass the network configuration details to the initramfs via cmdline. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sql_connection = sqlite:///$state_path/baremetal_$sqlite_db | +sql_connection = sqlite:///$state_path/baremetal_nova.sqlite | (StrOpt) The SQLAlchemy connection string used to connect to the bare-metal database | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ca_file = None | -(StrOpt) CA certificate file to use to verify connecting clients | +(StrOpt) CA certificate file to use to verify connecting clients. |
cert_file = None | -(StrOpt) Certificate file to use when starting the server securely | +(StrOpt) Certificate file to use when starting the server securely. |
key_file = None | -(StrOpt) Private key file to use when starting the server securely | +(StrOpt) Private key file to use when starting the server securely. |
notification_driver = [] | -(MultiStrOpt) Driver or drivers to handle sending notifications | +(MultiStrOpt) Driver or drivers to handle sending notifications. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
notification_topics = notifications | -(ListOpt) AMQP topic used for OpenStack notifications | +(ListOpt) AMQP topic used for OpenStack notifications. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
notify_api_faults = False | @@ -91,7 +91,7 @@(IntOpt) Maximum time since last check-in for up service | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
state_path = /var/lib/nova | +state_path = $pybasedir | (StrOpt) Top-level directory for maintaining nova's state | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image_cache_subdirectory_name = _base | (StrOpt) Where cached images are stored under $instances_path. This is NOT the full path - just a folder name. For per-compute-host cached images, set to _base_$my_ip | +||
image_handlers = download | +(ListOpt) Specifies which image handler extension names to use for handling images. The first extension in the list which can handle the image with a suitable location will be used. | +||
instance_build_timeout = 0 | (IntOpt) Amount of time in seconds an instance can be in BUILD before going into ERROR status.Set to 0 to disable. | @@ -138,6 +142,14 @@sync_power_state_interval = 600 | (IntOpt) Interval to sync power states between the database and the hypervisor |
vif_plugging_is_fatal = True | +(BoolOpt) Fail instance boot if vif plugging fails | +||
vif_plugging_timeout = 300 | +(IntOpt) Number of seconds to wait for neutron vif plugging events to arrive before continuing or failing (see vif_plugging_is_fatal). If this is set to zero and vif_plugging_is_fatal is False, events should not be expected to arrive at all. | +
db_driver = nova.db | (StrOpt) The driver to use for database access | -||
sqlite_db = nova.sqlite | -(StrOpt) The file name to use with SQLite | -||
sqlite_synchronous = True | -(BoolOpt) If True, SQLite uses synchronous mode | -||
[cells] | (StrOpt) The backend to use for db | ||
---|---|---|---|
connection = sqlite:////usr/lib/python/site-packages/nova/openstack/common/db/$sqlite_db | +connection = None | (StrOpt) The SQLAlchemy connection string used to connect to the database | |
connection_trace = False | (BoolOpt) Add python stack traces to SQL as comment strings | ||
db_inc_retry_interval = True | +(BoolOpt) Whether to increase interval between db connection retries, up to db_max_retry_interval | +||
db_max_retries = 20 | +(IntOpt) maximum db connection retries before error is raised. (setting -1 implies an infinite retry count) | +||
db_max_retry_interval = 10 | +(IntOpt) max seconds between db connection retries, if db_inc_retry_interval is enabled | +||
db_retry_interval = 1 | +(IntOpt) seconds between db connection retries | +||
idle_timeout = 3600 | (IntOpt) Timeout before idle sql connections are reaped | @@ -76,6 +84,10 @@min_pool_size = 1 | (IntOpt) Minimum number of SQL connections to keep open in a pool |
mysql_sql_mode = None | +(StrOpt) The SQL mode to be used for MySQL sessions (default is empty, meaning do not override any server-side SQL mode setting) | +||
pool_timeout = None | (IntOpt) If set, use this value for pool_timeout with sqlalchemy | @@ -85,9 +97,21 @@(IntOpt) Interval between retries of opening a sql connection | |
slave_connection = | +slave_connection = None | (StrOpt) The SQLAlchemy connection string used to connect to the slave database | |
sqlite_db = nova.sqlite | +(StrOpt) The file name to use with SQLite | +||
sqlite_synchronous = True | +(BoolOpt) If True, SQLite uses synchronous mode | +||
use_db_reconnect = False | +(BoolOpt) Enable the experimental use of database reconnect on connection lost | +
Configuration option = Default value | -Description | -
---|---|
[docker] | -|
registry_default_port = 5042 | -(IntOpt) Default TCP port to find the docker-registry container | -
[DEFAULT] | ||
---|---|---|
kombu_reconnect_delay = 1.0 | +(FloatOpt) How long to wait before reconnecting in response to an AMQP consumer cancel notification. | +|
kombu_ssl_ca_certs = | -(StrOpt) SSL certification authority file (valid only if SSL enabled) | +(StrOpt) SSL certification authority file (valid only if SSL enabled). |
kombu_ssl_certfile = | -(StrOpt) SSL cert file (valid only if SSL enabled) | +(StrOpt) SSL cert file (valid only if SSL enabled). |
kombu_ssl_keyfile = | -(StrOpt) SSL key file (valid only if SSL enabled) | +(StrOpt) SSL key file (valid only if SSL enabled). |
kombu_ssl_version = | -(StrOpt) SSL version to use (valid only if SSL enabled). valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some distributions | +(StrOpt) SSL version to use (valid only if SSL enabled). valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some distributions. |
syslog-log-facility = LOG_USER | (StrOpt) syslog facility to receive log lines | +|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use_stderr = True | +(BoolOpt) Log output to standard error | +|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use-syslog = False | (BoolOpt) Use syslog for logging. Existing syslog format is DEPRECATED during I, and then will be changed in J to honor RFC5424 | @@ -94,10 +98,6 @@use-syslog-rfc-format = False | (BoolOpt) (Optional) Use syslog rfc5424 format for logging. If enabled, will add APP-NAME (RFC5424) before the MSG part of the syslog message. The old format without APP-NAME is deprecated in I, and will be removed in J. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use_stderr = True | -(BoolOpt) Log output to standard error | -|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
verbose = False | (BoolOpt) Print more verbose output (set logging level to INFO instead of default WARNING level). | diff --git a/doc/common/tables/nova-metadata.xml b/doc/common/tables/nova-metadata.xml index abc09cd4fb..15c31d25d8 100644 --- a/doc/common/tables/nova-metadata.xml +++ b/doc/common/tables/nova-metadata.xml @@ -4,7 +4,7 @@ The tool to do so lives in the tools directory of this repository -->
qpid_heartbeat = 60 | -(IntOpt) Seconds between connection keepalive heartbeats | +(IntOpt) Seconds between connection keepalive heartbeats. |
qpid_hostname = oslo | -(StrOpt) Qpid broker hostname | +(StrOpt) Qpid broker hostname. |
qpid_hosts = $qpid_hostname:$qpid_port | -(ListOpt) Qpid HA cluster host:port pairs | +(ListOpt) Qpid HA cluster host:port pairs. |
qpid_password = | -(StrOpt) Password for Qpid connection | +(StrOpt) Password for Qpid connection. |
qpid_port = 5672 | -(IntOpt) Qpid broker port | +(IntOpt) Qpid broker port. |
qpid_protocol = tcp | -(StrOpt) Transport to use, either 'tcp' or 'ssl' | +(StrOpt) Transport to use, either 'tcp' or 'ssl'. |
qpid_sasl_mechanisms = | -(StrOpt) Space separated list of SASL mechanisms to use for auth | +(StrOpt) Space separated list of SASL mechanisms to use for auth. |
qpid_tcp_nodelay = True | -(BoolOpt) Disable Nagle algorithm | +(BoolOpt) Whether to disable the Nagle algorithm. |
qpid_topology_version = 1 | @@ -56,7 +56,7 @@||
qpid_username = | -(StrOpt) Username for Qpid connection | +(StrOpt) Username for Qpid connection. |
rabbit_host = oslo | -(StrOpt) The RabbitMQ broker address where a single node is used | +(StrOpt) The RabbitMQ broker address where a single node is used. |
rabbit_hosts = $rabbit_host:$rabbit_port | -(ListOpt) RabbitMQ HA cluster host:port pairs | +(ListOpt) RabbitMQ HA cluster host:port pairs. | +
rabbit_login_method = AMQPLAIN | +(StrOpt) the RabbitMQ login method | |
rabbit_max_retries = 0 | -(IntOpt) Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry count) | +(IntOpt) Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry count). |
rabbit_password = guest | -(StrOpt) The RabbitMQ password | +(StrOpt) The RabbitMQ password. |
rabbit_port = 5672 | -(IntOpt) The RabbitMQ broker port where a single node is used | +(IntOpt) The RabbitMQ broker port where a single node is used. |
rabbit_retry_backoff = 2 | -(IntOpt) How long to backoff for between retries when connecting to RabbitMQ | +(IntOpt) How long to backoff for between retries when connecting to RabbitMQ. |
rabbit_retry_interval = 1 | -(IntOpt) How frequently to retry connecting with RabbitMQ | +(IntOpt) How frequently to retry connecting with RabbitMQ. |
rabbit_use_ssl = False | -(BoolOpt) Connect over SSL for RabbitMQ | +(BoolOpt) Connect over SSL for RabbitMQ. |
rabbit_userid = guest | -(StrOpt) The RabbitMQ userid | +(StrOpt) The RabbitMQ userid. |
rabbit_virtual_host = / | -(StrOpt) The RabbitMQ virtual host | +(StrOpt) The RabbitMQ virtual host. |
password = None | -(StrOpt) Password for Redis server. (optional) | +(StrOpt) Password for Redis server (optional). | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[remote_debug] | diff --git a/doc/common/tables/nova-rpc.xml b/doc/common/tables/nova-rpc.xml index df4bca0683..2beecc2e6e 100644 --- a/doc/common/tables/nova-rpc.xml +++ b/doc/common/tables/nova-rpc.xml @@ -4,7 +4,7 @@ The tool to do so lives in the tools directory of this repository -->
---|
matchmaker_heartbeat_freq = 300 | -(IntOpt) Heartbeat frequency | +(IntOpt) Heartbeat frequency. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
matchmaker_heartbeat_ttl = 600 | @@ -48,15 +48,15 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rpc_conn_pool_size = 30 | -(IntOpt) Size of RPC connection pool | +(IntOpt) Size of RPC connection pool. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rpc_response_timeout = 60 | -(IntOpt) Seconds to wait for a response from a call | +(IntOpt) Seconds to wait for a response from a call. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rpc_thread_pool_size = 64 | -(IntOpt) Size of RPC greenthread pool | +(IntOpt) Size of RPC greenthread pool. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[cells] | @@ -70,7 +70,7 @@|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ringfile = /etc/oslo/matchmaker_ring.json | -(StrOpt) Matchmaker ring file (JSON) | +(StrOpt) Matchmaker ring file (JSON). | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[upgrade_levels] | diff --git a/doc/common/tables/nova-rpc_all.xml b/doc/common/tables/nova-rpc_all.xml new file mode 100644 index 0000000000..71afcbc003 --- /dev/null +++ b/doc/common/tables/nova-rpc_all.xml @@ -0,0 +1,220 @@ + + +
Configuration option = Default value | +Description | +
---|---|
[DEFAULT] | +|
amqp_auto_delete = False | +(BoolOpt) Auto-delete queues in amqp. | +
amqp_durable_queues = False | +(BoolOpt) Use durable queues in amqp. | +
control_exchange = openstack | +(StrOpt) The default exchange under which topics are scoped. May be overridden by an exchange name specified in the transport_url option. | +
kombu_reconnect_delay = 1.0 | +(FloatOpt) How long to wait before reconnecting in response to an AMQP consumer cancel notification. | +
kombu_ssl_ca_certs = | +(StrOpt) SSL certification authority file (valid only if SSL enabled). | +
kombu_ssl_certfile = | +(StrOpt) SSL cert file (valid only if SSL enabled). | +
kombu_ssl_keyfile = | +(StrOpt) SSL key file (valid only if SSL enabled). | +
kombu_ssl_version = | +(StrOpt) SSL version to use (valid only if SSL enabled). valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some distributions. | +
matchmaker_heartbeat_freq = 300 | +(IntOpt) Heartbeat frequency. | +
matchmaker_heartbeat_ttl = 600 | +(IntOpt) Heartbeat time-to-live. | +
qpid_heartbeat = 60 | +(IntOpt) Seconds between connection keepalive heartbeats. | +
qpid_hostname = oslo | +(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_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. | +
rabbit_ha_queues = False | +(BoolOpt) Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you must wipe the RabbitMQ database. | +
rabbit_host = oslo | +(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_login_method = AMQPLAIN | +(StrOpt) the RabbitMQ login method | +
rabbit_max_retries = 0 | +(IntOpt) Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry count). | +
rabbit_password = guest | +(StrOpt) The RabbitMQ password. | +
rabbit_port = 5672 | +(IntOpt) The RabbitMQ broker port where a single node is used. | +
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_use_ssl = False | +(BoolOpt) Connect over SSL for RabbitMQ. | +
rabbit_userid = guest | +(StrOpt) The RabbitMQ userid. | +
rabbit_virtual_host = / | +(StrOpt) The RabbitMQ virtual host. | +
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. | +
rpc_conn_pool_size = 30 | +(IntOpt) Size of RPC connection pool. | +
rpc_response_timeout = 60 | +(IntOpt) Seconds to wait for a response from a call. | +
rpc_thread_pool_size = 64 | +(IntOpt) Size of RPC greenthread pool. | +
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_contexts = 1 | +(IntOpt) Number of ZeroMQ contexts, defaults to 1. | +
rpc_zmq_host = oslo | +(StrOpt) Name of this node. Must be a valid hostname, FQDN, or IP address. Must match "host" option, if running Nova. | +
rpc_zmq_ipc_dir = /var/run/openstack | +(StrOpt) Directory for holding IPC sockets. | +
rpc_zmq_matchmaker = oslo.messaging._drivers.matchmaker.MatchMakerLocalhost | +(StrOpt) MatchMaker driver. | +
rpc_zmq_port = 9501 | +(IntOpt) ZeroMQ receiver listening port. | +
rpc_zmq_topic_backlog = None | +(IntOpt) Maximum number of ingress messages to locally buffer per topic. Default is unlimited. | +
[cells] | +|
rpc_driver_queue_base = cells.intercell | +(StrOpt) Base queue name to use when communicating between cells. Various topics by message type will be appended to this. | +
[matchmaker_ring] | +|
ringfile = /etc/oslo/matchmaker_ring.json | +(StrOpt) Matchmaker ring file (JSON). | +
[upgrade_levels] | +|
baseapi = None | +(StrOpt) Set a version cap for messages sent to the base api in any service | +
allowed_rpc_exception_modules = oslo.messaging.exceptions, nova.exception, cinder.exception, exceptions | -(ListOpt) Modules of exceptions that are permitted to be recreatedupon receiving exception data from an rpc call. | +(ListOpt) Modules of exceptions that are permitted to be recreated upon receiving exception data from an rpc call. | ||||||||||||||||||||
backdoor_port = None | @@ -36,7 +36,7 @@||||||||||||||||||||||
fake_rabbit = False | -(BoolOpt) If passed, use a fake RabbitMQ provider | +(BoolOpt) If passed, use a fake RabbitMQ provider. | ||||||||||||||||||||
monkey_patch = False | diff --git a/doc/common/tables/nova-tilera.xml b/doc/common/tables/nova-tilera.xml index 43c8e9b194..8ef8e27cf5 100644 --- a/doc/common/tables/nova-tilera.xml +++ b/doc/common/tables/nova-tilera.xml @@ -4,7 +4,7 @@ The tool to do so lives in the tools directory of this repository -->
host_ip = None | -(StrOpt) URL for connection to VMware ESX/VC host. | +(StrOpt) Hostname or IP address for connection to VMware ESX/VC host. | ||||||||||||||||
host_password = None | diff --git a/doc/common/tables/nova-vnc.xml b/doc/common/tables/nova-vnc.xml index 6b82f8a886..6c24d261b7 100644 --- a/doc/common/tables/nova-vnc.xml +++ b/doc/common/tables/nova-vnc.xml @@ -4,7 +4,7 @@ The tool to do so lives in the tools directory of this repository -->
introduce_vdi_retry_wait = 20 | -(IntOpt) Number of seconds to wait for an SR to settle if the VDI does not exist when first introduced | +(IntOpt) Number of seconds to wait for an SR to settle if the VDI does not exist when first introduced | ||||||||||||
ipxe_boot_menu_url = None | diff --git a/doc/common/tables/nova-xvpnvncproxy.xml b/doc/common/tables/nova-xvpnvncproxy.xml index 47017c9b39..f6e6915912 100644 --- a/doc/common/tables/nova-xvpnvncproxy.xml +++ b/doc/common/tables/nova-xvpnvncproxy.xml @@ -4,7 +4,7 @@ The tool to do so lives in the tools directory of this repository -->
rpc_zmq_contexts = 1 | -(IntOpt) Number of ZeroMQ contexts, defaults to 1 | +(IntOpt) Number of ZeroMQ contexts, defaults to 1. |
rpc_zmq_host = oslo | @@ -32,15 +32,15 @@||
rpc_zmq_ipc_dir = /var/run/openstack | -(StrOpt) Directory for holding IPC sockets | +(StrOpt) Directory for holding IPC sockets. |
rpc_zmq_matchmaker = oslo.messaging._drivers.matchmaker.MatchMakerLocalhost | -(StrOpt) MatchMaker driver | +(StrOpt) MatchMaker driver. |
rpc_zmq_port = 9501 | -(IntOpt) ZeroMQ receiver listening port | +(IntOpt) ZeroMQ receiver listening port. |
rpc_zmq_topic_backlog = None | diff --git a/doc/common/tables/nova-zookeeper.xml b/doc/common/tables/nova-zookeeper.xml index c71889cd2d..a22d3ba5fd 100644 --- a/doc/common/tables/nova-zookeeper.xml +++ b/doc/common/tables/nova-zookeeper.xml @@ -4,7 +4,7 @@ The tool to do so lives in the tools directory of this repository -->