Update help for 'provisioning_network' option
This updates the help string for [neutron]provisioning_network
configuration option to indicate that the value can also be a
network name.
The release note for this new configuration option is also
updated.
This is a follow up to b6a2919b61
.
Change-Id: I5773b20c5578fa4d14f80de9119e442edfe98dd0
This commit is contained in:
parent
d69a3b6c58
commit
ea55db7b99
@ -203,7 +203,7 @@
|
|||||||
|
|
||||||
# Log output to standard error. This option is ignored if
|
# Log output to standard error. This option is ignored if
|
||||||
# log_config_append is set. (boolean value)
|
# log_config_append is set. (boolean value)
|
||||||
#use_stderr = true
|
#use_stderr = false
|
||||||
|
|
||||||
# Format string to use for log messages with context. (string
|
# Format string to use for log messages with context. (string
|
||||||
# value)
|
# value)
|
||||||
@ -241,6 +241,20 @@
|
|||||||
# message. (string value)
|
# message. (string value)
|
||||||
#instance_uuid_format = "[instance: %(uuid)s] "
|
#instance_uuid_format = "[instance: %(uuid)s] "
|
||||||
|
|
||||||
|
# Interval, number of seconds, of log rate limiting. (integer
|
||||||
|
# value)
|
||||||
|
#rate_limit_interval = 0
|
||||||
|
|
||||||
|
# Maximum number of logged messages per rate_limit_interval.
|
||||||
|
# (integer value)
|
||||||
|
#rate_limit_burst = 0
|
||||||
|
|
||||||
|
# Log level name used by rate limiting: CRITICAL, ERROR, INFO,
|
||||||
|
# WARNING, DEBUG or empty string. Logs with level greater or
|
||||||
|
# equal to rate_limit_except_level are not filtered. An empty
|
||||||
|
# string means that all levels are filtered. (string value)
|
||||||
|
#rate_limit_except_level = CRITICAL
|
||||||
|
|
||||||
# Enables or disables fatal status of deprecations. (boolean
|
# Enables or disables fatal status of deprecations. (boolean
|
||||||
# value)
|
# value)
|
||||||
#fatal_deprecations = false
|
#fatal_deprecations = false
|
||||||
@ -268,7 +282,7 @@
|
|||||||
#rpc_zmq_bind_address = *
|
#rpc_zmq_bind_address = *
|
||||||
|
|
||||||
# MatchMaker driver. (string value)
|
# MatchMaker driver. (string value)
|
||||||
# Allowed values: redis, dummy
|
# Allowed values: redis, sentinel, dummy
|
||||||
# Deprecated group/name - [DEFAULT]/rpc_zmq_matchmaker
|
# Deprecated group/name - [DEFAULT]/rpc_zmq_matchmaker
|
||||||
#rpc_zmq_matchmaker = redis
|
#rpc_zmq_matchmaker = redis
|
||||||
|
|
||||||
@ -291,13 +305,15 @@
|
|||||||
# Deprecated group/name - [DEFAULT]/rpc_zmq_host
|
# Deprecated group/name - [DEFAULT]/rpc_zmq_host
|
||||||
#rpc_zmq_host = localhost
|
#rpc_zmq_host = localhost
|
||||||
|
|
||||||
# Seconds to wait before a cast expires (TTL). The default
|
# Number of seconds to wait before all pending messages will
|
||||||
# value of -1 specifies an infinite linger period. The value
|
# be sent after closing a socket. The default value of -1
|
||||||
# of 0 specifies no linger period. Pending messages shall be
|
# specifies an infinite linger period. The value of 0
|
||||||
# discarded immediately when the socket is closed. Only
|
# specifies no linger period. Pending messages shall be
|
||||||
# supported by impl_zmq. (integer value)
|
# discarded immediately when the socket is closed. Positive
|
||||||
|
# values specify an upper bound for the linger period.
|
||||||
|
# (integer value)
|
||||||
# Deprecated group/name - [DEFAULT]/rpc_cast_timeout
|
# Deprecated group/name - [DEFAULT]/rpc_cast_timeout
|
||||||
#rpc_cast_timeout = -1
|
#zmq_linger = -1
|
||||||
|
|
||||||
# The default number of seconds that poll should wait. Poll
|
# The default number of seconds that poll should wait. Poll
|
||||||
# raises timeout exception when timeout expired. (integer
|
# raises timeout exception when timeout expired. (integer
|
||||||
@ -318,7 +334,7 @@
|
|||||||
# Use PUB/SUB pattern for fanout methods. PUB/SUB always uses
|
# Use PUB/SUB pattern for fanout methods. PUB/SUB always uses
|
||||||
# proxy. (boolean value)
|
# proxy. (boolean value)
|
||||||
# Deprecated group/name - [DEFAULT]/use_pub_sub
|
# Deprecated group/name - [DEFAULT]/use_pub_sub
|
||||||
#use_pub_sub = true
|
#use_pub_sub = false
|
||||||
|
|
||||||
# Use ROUTER remote proxy. (boolean value)
|
# Use ROUTER remote proxy. (boolean value)
|
||||||
# Deprecated group/name - [DEFAULT]/use_router_proxy
|
# Deprecated group/name - [DEFAULT]/use_router_proxy
|
||||||
@ -353,7 +369,73 @@
|
|||||||
# False means to keep queue and messages even if server is
|
# False means to keep queue and messages even if server is
|
||||||
# disconnected, when the server appears we send all
|
# disconnected, when the server appears we send all
|
||||||
# accumulated messages to it. (boolean value)
|
# accumulated messages to it. (boolean value)
|
||||||
#zmq_immediate = false
|
#zmq_immediate = true
|
||||||
|
|
||||||
|
# Enable/disable TCP keepalive (KA) mechanism. The default
|
||||||
|
# value of -1 (or any other negative value) means to skip any
|
||||||
|
# overrides and leave it to OS default; 0 and 1 (or any other
|
||||||
|
# positive value) mean to disable and enable the option
|
||||||
|
# respectively. (integer value)
|
||||||
|
#zmq_tcp_keepalive = -1
|
||||||
|
|
||||||
|
# The duration between two keepalive transmissions in idle
|
||||||
|
# condition. The unit is platform dependent, for example,
|
||||||
|
# seconds in Linux, milliseconds in Windows etc. The default
|
||||||
|
# value of -1 (or any other negative value and 0) means to
|
||||||
|
# skip any overrides and leave it to OS default. (integer
|
||||||
|
# value)
|
||||||
|
#zmq_tcp_keepalive_idle = -1
|
||||||
|
|
||||||
|
# The number of retransmissions to be carried out before
|
||||||
|
# declaring that remote end is not available. The default
|
||||||
|
# value of -1 (or any other negative value and 0) means to
|
||||||
|
# skip any overrides and leave it to OS default. (integer
|
||||||
|
# value)
|
||||||
|
#zmq_tcp_keepalive_cnt = -1
|
||||||
|
|
||||||
|
# The duration between two successive keepalive
|
||||||
|
# retransmissions, if acknowledgement to the previous
|
||||||
|
# keepalive transmission is not received. The unit is platform
|
||||||
|
# dependent, for example, seconds in Linux, milliseconds in
|
||||||
|
# Windows etc. The default value of -1 (or any other negative
|
||||||
|
# value and 0) means to skip any overrides and leave it to OS
|
||||||
|
# default. (integer value)
|
||||||
|
#zmq_tcp_keepalive_intvl = -1
|
||||||
|
|
||||||
|
# Maximum number of (green) threads to work concurrently.
|
||||||
|
# (integer value)
|
||||||
|
#rpc_thread_pool_size = 100
|
||||||
|
|
||||||
|
# Expiration timeout in seconds of a sent/received message
|
||||||
|
# after which it is not tracked anymore by a client/server.
|
||||||
|
# (integer value)
|
||||||
|
#rpc_message_ttl = 300
|
||||||
|
|
||||||
|
# Wait for message acknowledgements from receivers. This
|
||||||
|
# mechanism works only via proxy without PUB/SUB. (boolean
|
||||||
|
# value)
|
||||||
|
#rpc_use_acks = false
|
||||||
|
|
||||||
|
# Number of seconds to wait for an ack from a cast/call. After
|
||||||
|
# each retry attempt this timeout is multiplied by some
|
||||||
|
# specified multiplier. (integer value)
|
||||||
|
#rpc_ack_timeout_base = 15
|
||||||
|
|
||||||
|
# Number to multiply base ack timeout by after each retry
|
||||||
|
# attempt. (integer value)
|
||||||
|
#rpc_ack_timeout_multiplier = 2
|
||||||
|
|
||||||
|
# Default number of message sending attempts in case of any
|
||||||
|
# problems occurred: positive value N means at most N retries,
|
||||||
|
# 0 means no retries, None or -1 (or any other negative
|
||||||
|
# values) mean to retry forever. This option is used only if
|
||||||
|
# acknowledgments are enabled. (integer value)
|
||||||
|
#rpc_retry_attempts = 3
|
||||||
|
|
||||||
|
# List of publisher hosts SubConsumer can subscribe on. This
|
||||||
|
# option has higher priority then the default publishers list
|
||||||
|
# taken from the matchmaker. (list value)
|
||||||
|
#subscribe_on =
|
||||||
|
|
||||||
# Size of executor thread pool. (integer value)
|
# Size of executor thread pool. (integer value)
|
||||||
# Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
|
# Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
|
||||||
@ -1655,8 +1737,12 @@
|
|||||||
# (string value)
|
# (string value)
|
||||||
#region_name = <None>
|
#region_name = <None>
|
||||||
|
|
||||||
# Directory used to cache files related to PKI tokens. (string
|
# DEPRECATED: Directory used to cache files related to PKI
|
||||||
# value)
|
# tokens. This option has been deprecated in the Ocata release
|
||||||
|
# and will be removed in the P release. (string value)
|
||||||
|
# This option is deprecated for removal since Ocata.
|
||||||
|
# Its value may be silently ignored in the future.
|
||||||
|
# Reason: PKI token format is no longer supported.
|
||||||
#signing_dir = <None>
|
#signing_dir = <None>
|
||||||
|
|
||||||
# Optionally specify a list of memcached server(s) to use for
|
# Optionally specify a list of memcached server(s) to use for
|
||||||
@ -1671,11 +1757,16 @@
|
|||||||
# caching completely. (integer value)
|
# caching completely. (integer value)
|
||||||
#token_cache_time = 300
|
#token_cache_time = 300
|
||||||
|
|
||||||
# Determines the frequency at which the list of revoked tokens
|
# DEPRECATED: Determines the frequency at which the list of
|
||||||
# is retrieved from the Identity service (in seconds). A high
|
# revoked tokens is retrieved from the Identity service (in
|
||||||
# number of revocation events combined with a low cache
|
# seconds). A high number of revocation events combined with a
|
||||||
# duration may significantly reduce performance. Only valid
|
# low cache duration may significantly reduce performance.
|
||||||
# for PKI tokens. (integer value)
|
# Only valid for PKI tokens. This option has been deprecated
|
||||||
|
# in the Ocata release and will be removed in the P release.
|
||||||
|
# (integer value)
|
||||||
|
# This option is deprecated for removal since Ocata.
|
||||||
|
# Its value may be silently ignored in the future.
|
||||||
|
# Reason: PKI token format is no longer supported.
|
||||||
#revocation_cache_time = 10
|
#revocation_cache_time = 10
|
||||||
|
|
||||||
# (Optional) If defined, indicate whether token data should be
|
# (Optional) If defined, indicate whether token data should be
|
||||||
@ -1735,21 +1826,27 @@
|
|||||||
# value)
|
# value)
|
||||||
#enforce_token_bind = permissive
|
#enforce_token_bind = permissive
|
||||||
|
|
||||||
# If true, the revocation list will be checked for cached
|
# DEPRECATED: If true, the revocation list will be checked for
|
||||||
# tokens. This requires that PKI tokens are configured on the
|
# cached tokens. This requires that PKI tokens are configured
|
||||||
# identity server. (boolean value)
|
# on the identity server. (boolean value)
|
||||||
|
# This option is deprecated for removal since Ocata.
|
||||||
|
# Its value may be silently ignored in the future.
|
||||||
|
# Reason: PKI token format is no longer supported.
|
||||||
#check_revocations_for_cached = false
|
#check_revocations_for_cached = false
|
||||||
|
|
||||||
# Hash algorithms to use for hashing PKI tokens. This may be a
|
# DEPRECATED: Hash algorithms to use for hashing PKI tokens.
|
||||||
# single algorithm or multiple. The algorithms are those
|
# This may be a single algorithm or multiple. The algorithms
|
||||||
# supported by Python standard hashlib.new(). The hashes will
|
# are those supported by Python standard hashlib.new(). The
|
||||||
# be tried in the order given, so put the preferred one first
|
# hashes will be tried in the order given, so put the
|
||||||
# for performance. The result of the first hash will be stored
|
# preferred one first for performance. The result of the first
|
||||||
# in the cache. This will typically be set to multiple values
|
# hash will be stored in the cache. This will typically be set
|
||||||
# only while migrating from a less secure algorithm to a more
|
# to multiple values only while migrating from a less secure
|
||||||
# secure one. Once all the old tokens are expired this option
|
# algorithm to a more secure one. Once all the old tokens are
|
||||||
# should be set to a single value for better performance.
|
# expired this option should be set to a single value for
|
||||||
# (list value)
|
# better performance. (list value)
|
||||||
|
# This option is deprecated for removal since Ocata.
|
||||||
|
# Its value may be silently ignored in the future.
|
||||||
|
# Reason: PKI token format is no longer supported.
|
||||||
#hash_algorithms = md5
|
#hash_algorithms = md5
|
||||||
|
|
||||||
# Authentication type to load (string value)
|
# Authentication type to load (string value)
|
||||||
@ -1790,8 +1887,7 @@
|
|||||||
#password =
|
#password =
|
||||||
|
|
||||||
# DEPRECATED: List of Redis Sentinel hosts (fault tolerance
|
# DEPRECATED: List of Redis Sentinel hosts (fault tolerance
|
||||||
# mode) e.g. [host:port, host1:port ... ] (list
|
# mode), e.g., [host:port, host1:port ... ] (list value)
|
||||||
# value)
|
|
||||||
# This option is deprecated for removal.
|
# This option is deprecated for removal.
|
||||||
# Its value may be silently ignored in the future.
|
# Its value may be silently ignored in the future.
|
||||||
# Reason: Replaced by [DEFAULT]/transport_url
|
# Reason: Replaced by [DEFAULT]/transport_url
|
||||||
@ -1808,7 +1904,7 @@
|
|||||||
# (integer value)
|
# (integer value)
|
||||||
#check_timeout = 20000
|
#check_timeout = 20000
|
||||||
|
|
||||||
# Timeout in ms on blocking socket operations (integer value)
|
# Timeout in ms on blocking socket operations. (integer value)
|
||||||
#socket_timeout = 10000
|
#socket_timeout = 10000
|
||||||
|
|
||||||
|
|
||||||
@ -1988,8 +2084,8 @@
|
|||||||
# Deprecated group/name - [neutron]/tenant-name
|
# Deprecated group/name - [neutron]/tenant-name
|
||||||
#project_name = <None>
|
#project_name = <None>
|
||||||
|
|
||||||
# Neutron network UUID for the ramdisk to be booted into for
|
# Neutron network UUID or name for the ramdisk to be booted
|
||||||
# provisioning nodes. Required for "neutron" network
|
# into for provisioning nodes. Required for "neutron" network
|
||||||
# interface. If a name is provided, it must be unique among
|
# interface. If a name is provided, it must be unique among
|
||||||
# all networks or deploy will fail. (string value)
|
# all networks or deploy will fail. (string value)
|
||||||
# Deprecated group/name - [neutron]/provisioning_network_uuid
|
# Deprecated group/name - [neutron]/provisioning_network_uuid
|
||||||
@ -2282,6 +2378,19 @@
|
|||||||
# Minimum value: 1
|
# Minimum value: 1
|
||||||
#notify_server_credit = 100
|
#notify_server_credit = 100
|
||||||
|
|
||||||
|
# Send messages of this type pre-settled.
|
||||||
|
# Pre-settled messages will not receive acknowledgement
|
||||||
|
# from the peer. Note well: pre-settled messages may be
|
||||||
|
# silently discarded if the delivery fails.
|
||||||
|
# Permitted values:
|
||||||
|
# 'rpc-call' - send RPC Calls pre-settled
|
||||||
|
# 'rpc-reply'- send RPC Replies pre-settled
|
||||||
|
# 'rpc-cast' - Send RPC Casts pre-settled
|
||||||
|
# 'notify' - Send Notifications pre-settled
|
||||||
|
# (multi valued)
|
||||||
|
#pre_settled = rpc-cast
|
||||||
|
#pre_settled = rpc-reply
|
||||||
|
|
||||||
|
|
||||||
[oslo_messaging_notifications]
|
[oslo_messaging_notifications]
|
||||||
|
|
||||||
@ -2409,6 +2518,7 @@
|
|||||||
#rabbit_password = guest
|
#rabbit_password = guest
|
||||||
|
|
||||||
# The RabbitMQ login method. (string value)
|
# The RabbitMQ login method. (string value)
|
||||||
|
# Allowed values: PLAIN, AMQPLAIN, RABBIT-CR-DEMO
|
||||||
# Deprecated group/name - [DEFAULT]/rabbit_login_method
|
# Deprecated group/name - [DEFAULT]/rabbit_login_method
|
||||||
#rabbit_login_method = AMQPLAIN
|
#rabbit_login_method = AMQPLAIN
|
||||||
|
|
||||||
@ -2443,7 +2553,7 @@
|
|||||||
# change this option, you must wipe the RabbitMQ database. In
|
# change this option, you must wipe the RabbitMQ database. In
|
||||||
# RabbitMQ 3.0, queue mirroring is no longer controlled by the
|
# RabbitMQ 3.0, queue mirroring is no longer controlled by the
|
||||||
# x-ha-policy argument when declaring a queue. If you just
|
# x-ha-policy argument when declaring a queue. If you just
|
||||||
# want to make sure that all queues (except those with auto-
|
# want to make sure that all queues (except those with auto-
|
||||||
# generated names) are mirrored across all nodes, run:
|
# generated names) are mirrored across all nodes, run:
|
||||||
# "rabbitmqctl set_policy HA '^(?!amq\.).*' '{"ha-mode":
|
# "rabbitmqctl set_policy HA '^(?!amq\.).*' '{"ha-mode":
|
||||||
# "all"}' " (boolean value)
|
# "all"}' " (boolean value)
|
||||||
@ -2529,6 +2639,12 @@
|
|||||||
# connections are closed on acquire. (integer value)
|
# connections are closed on acquire. (integer value)
|
||||||
#pool_stale = 60
|
#pool_stale = 60
|
||||||
|
|
||||||
|
# Default serialization mechanism for
|
||||||
|
# serializing/deserializing outgoing/incoming messages (string
|
||||||
|
# value)
|
||||||
|
# Allowed values: json, msgpack
|
||||||
|
#default_serializer_type = json
|
||||||
|
|
||||||
# Persist notification messages. (boolean value)
|
# Persist notification messages. (boolean value)
|
||||||
#notification_persistence = false
|
#notification_persistence = false
|
||||||
|
|
||||||
@ -2578,7 +2694,7 @@
|
|||||||
# Reconnecting retry count in case of connectivity problem
|
# Reconnecting retry count in case of connectivity problem
|
||||||
# during sending RPC message, -1 means infinite retry. If
|
# during sending RPC message, -1 means infinite retry. If
|
||||||
# actual retry attempts in not 0 the rpc request could be
|
# actual retry attempts in not 0 the rpc request could be
|
||||||
# processed more then one time (integer value)
|
# processed more than one time (integer value)
|
||||||
#default_rpc_retry_attempts = -1
|
#default_rpc_retry_attempts = -1
|
||||||
|
|
||||||
# Reconnecting retry delay in case of connectivity problem
|
# Reconnecting retry delay in case of connectivity problem
|
||||||
@ -2599,7 +2715,7 @@
|
|||||||
#rpc_zmq_bind_address = *
|
#rpc_zmq_bind_address = *
|
||||||
|
|
||||||
# MatchMaker driver. (string value)
|
# MatchMaker driver. (string value)
|
||||||
# Allowed values: redis, dummy
|
# Allowed values: redis, sentinel, dummy
|
||||||
# Deprecated group/name - [DEFAULT]/rpc_zmq_matchmaker
|
# Deprecated group/name - [DEFAULT]/rpc_zmq_matchmaker
|
||||||
#rpc_zmq_matchmaker = redis
|
#rpc_zmq_matchmaker = redis
|
||||||
|
|
||||||
@ -2622,13 +2738,15 @@
|
|||||||
# Deprecated group/name - [DEFAULT]/rpc_zmq_host
|
# Deprecated group/name - [DEFAULT]/rpc_zmq_host
|
||||||
#rpc_zmq_host = localhost
|
#rpc_zmq_host = localhost
|
||||||
|
|
||||||
# Seconds to wait before a cast expires (TTL). The default
|
# Number of seconds to wait before all pending messages will
|
||||||
# value of -1 specifies an infinite linger period. The value
|
# be sent after closing a socket. The default value of -1
|
||||||
# of 0 specifies no linger period. Pending messages shall be
|
# specifies an infinite linger period. The value of 0
|
||||||
# discarded immediately when the socket is closed. Only
|
# specifies no linger period. Pending messages shall be
|
||||||
# supported by impl_zmq. (integer value)
|
# discarded immediately when the socket is closed. Positive
|
||||||
|
# values specify an upper bound for the linger period.
|
||||||
|
# (integer value)
|
||||||
# Deprecated group/name - [DEFAULT]/rpc_cast_timeout
|
# Deprecated group/name - [DEFAULT]/rpc_cast_timeout
|
||||||
#rpc_cast_timeout = -1
|
#zmq_linger = -1
|
||||||
|
|
||||||
# The default number of seconds that poll should wait. Poll
|
# The default number of seconds that poll should wait. Poll
|
||||||
# raises timeout exception when timeout expired. (integer
|
# raises timeout exception when timeout expired. (integer
|
||||||
@ -2649,7 +2767,7 @@
|
|||||||
# Use PUB/SUB pattern for fanout methods. PUB/SUB always uses
|
# Use PUB/SUB pattern for fanout methods. PUB/SUB always uses
|
||||||
# proxy. (boolean value)
|
# proxy. (boolean value)
|
||||||
# Deprecated group/name - [DEFAULT]/use_pub_sub
|
# Deprecated group/name - [DEFAULT]/use_pub_sub
|
||||||
#use_pub_sub = true
|
#use_pub_sub = false
|
||||||
|
|
||||||
# Use ROUTER remote proxy. (boolean value)
|
# Use ROUTER remote proxy. (boolean value)
|
||||||
# Deprecated group/name - [DEFAULT]/use_router_proxy
|
# Deprecated group/name - [DEFAULT]/use_router_proxy
|
||||||
@ -2684,7 +2802,73 @@
|
|||||||
# False means to keep queue and messages even if server is
|
# False means to keep queue and messages even if server is
|
||||||
# disconnected, when the server appears we send all
|
# disconnected, when the server appears we send all
|
||||||
# accumulated messages to it. (boolean value)
|
# accumulated messages to it. (boolean value)
|
||||||
#zmq_immediate = false
|
#zmq_immediate = true
|
||||||
|
|
||||||
|
# Enable/disable TCP keepalive (KA) mechanism. The default
|
||||||
|
# value of -1 (or any other negative value) means to skip any
|
||||||
|
# overrides and leave it to OS default; 0 and 1 (or any other
|
||||||
|
# positive value) mean to disable and enable the option
|
||||||
|
# respectively. (integer value)
|
||||||
|
#zmq_tcp_keepalive = -1
|
||||||
|
|
||||||
|
# The duration between two keepalive transmissions in idle
|
||||||
|
# condition. The unit is platform dependent, for example,
|
||||||
|
# seconds in Linux, milliseconds in Windows etc. The default
|
||||||
|
# value of -1 (or any other negative value and 0) means to
|
||||||
|
# skip any overrides and leave it to OS default. (integer
|
||||||
|
# value)
|
||||||
|
#zmq_tcp_keepalive_idle = -1
|
||||||
|
|
||||||
|
# The number of retransmissions to be carried out before
|
||||||
|
# declaring that remote end is not available. The default
|
||||||
|
# value of -1 (or any other negative value and 0) means to
|
||||||
|
# skip any overrides and leave it to OS default. (integer
|
||||||
|
# value)
|
||||||
|
#zmq_tcp_keepalive_cnt = -1
|
||||||
|
|
||||||
|
# The duration between two successive keepalive
|
||||||
|
# retransmissions, if acknowledgement to the previous
|
||||||
|
# keepalive transmission is not received. The unit is platform
|
||||||
|
# dependent, for example, seconds in Linux, milliseconds in
|
||||||
|
# Windows etc. The default value of -1 (or any other negative
|
||||||
|
# value and 0) means to skip any overrides and leave it to OS
|
||||||
|
# default. (integer value)
|
||||||
|
#zmq_tcp_keepalive_intvl = -1
|
||||||
|
|
||||||
|
# Maximum number of (green) threads to work concurrently.
|
||||||
|
# (integer value)
|
||||||
|
#rpc_thread_pool_size = 100
|
||||||
|
|
||||||
|
# Expiration timeout in seconds of a sent/received message
|
||||||
|
# after which it is not tracked anymore by a client/server.
|
||||||
|
# (integer value)
|
||||||
|
#rpc_message_ttl = 300
|
||||||
|
|
||||||
|
# Wait for message acknowledgements from receivers. This
|
||||||
|
# mechanism works only via proxy without PUB/SUB. (boolean
|
||||||
|
# value)
|
||||||
|
#rpc_use_acks = false
|
||||||
|
|
||||||
|
# Number of seconds to wait for an ack from a cast/call. After
|
||||||
|
# each retry attempt this timeout is multiplied by some
|
||||||
|
# specified multiplier. (integer value)
|
||||||
|
#rpc_ack_timeout_base = 15
|
||||||
|
|
||||||
|
# Number to multiply base ack timeout by after each retry
|
||||||
|
# attempt. (integer value)
|
||||||
|
#rpc_ack_timeout_multiplier = 2
|
||||||
|
|
||||||
|
# Default number of message sending attempts in case of any
|
||||||
|
# problems occurred: positive value N means at most N retries,
|
||||||
|
# 0 means no retries, None or -1 (or any other negative
|
||||||
|
# values) mean to retry forever. This option is used only if
|
||||||
|
# acknowledgments are enabled. (integer value)
|
||||||
|
#rpc_retry_attempts = 3
|
||||||
|
|
||||||
|
# List of publisher hosts SubConsumer can subscribe on. This
|
||||||
|
# option has higher priority then the default publishers list
|
||||||
|
# taken from the matchmaker. (list value)
|
||||||
|
#subscribe_on =
|
||||||
|
|
||||||
|
|
||||||
[oslo_policy]
|
[oslo_policy]
|
||||||
@ -2693,7 +2877,7 @@
|
|||||||
# From oslo.policy
|
# From oslo.policy
|
||||||
#
|
#
|
||||||
|
|
||||||
# The JSON file that defines policies. (string value)
|
# The file that defines policies. (string value)
|
||||||
# Deprecated group/name - [DEFAULT]/policy_file
|
# Deprecated group/name - [DEFAULT]/policy_file
|
||||||
#policy_file = policy.json
|
#policy_file = policy.json
|
||||||
|
|
||||||
|
@ -53,10 +53,11 @@ opts = [
|
|||||||
'unique among all networks or cleaning will fail.'),
|
'unique among all networks or cleaning will fail.'),
|
||||||
deprecated_name='cleaning_network_uuid'),
|
deprecated_name='cleaning_network_uuid'),
|
||||||
cfg.StrOpt('provisioning_network',
|
cfg.StrOpt('provisioning_network',
|
||||||
help=_('Neutron network UUID for the ramdisk to be booted '
|
help=_('Neutron network UUID or name for the ramdisk to be '
|
||||||
'into for provisioning nodes. Required for "neutron" '
|
'booted into for provisioning nodes. Required for '
|
||||||
'network interface. If a name is provided, it must be '
|
'"neutron" network interface. If a name is provided, '
|
||||||
'unique among all networks or deploy will fail.'),
|
'it must be unique among all networks or deploy will '
|
||||||
|
'fail.'),
|
||||||
deprecated_name='provisioning_network_uuid'),
|
deprecated_name='provisioning_network_uuid'),
|
||||||
cfg.ListOpt('provisioning_network_security_groups',
|
cfg.ListOpt('provisioning_network_security_groups',
|
||||||
default=[],
|
default=[],
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
---
|
---
|
||||||
features:
|
features:
|
||||||
- Names can now be used instead of UUIDs for "cleaning_network" and
|
- Names can now be used instead of UUIDs for "cleaning_network" and
|
||||||
"provisioning_network" options (former "cleaning_network_uuid" and
|
"provisioning_network" [neutron] configuration options (formerly
|
||||||
"provisioning_network_uuid"). Care has to be taken to ensure that the
|
called "cleaning_network_uuid" and "provisioning_network_uuid").
|
||||||
|
Care has to be taken to ensure that the
|
||||||
names are unique among all networks in this case. Note that mapping between
|
names are unique among all networks in this case. Note that mapping between
|
||||||
a name and a UUID is cached for the lifetime of the conductor.
|
a name and a UUID is cached for the lifetime of the conductor.
|
||||||
deprecations:
|
deprecations:
|
||||||
- Configuration options "[neutron]cleaning_network_uuid" and
|
- Configuration options "[neutron]cleaning_network_uuid" and
|
||||||
"[neutron]provisioning_network_uuid" were deprecated in favor of new
|
"[neutron]provisioning_network_uuid" are deprecated in favor of new
|
||||||
"[neutron]cleaning_network" and "[neutron]provisioning_network".
|
"[neutron]cleaning_network" and "[neutron]provisioning_network"
|
||||||
|
respectively.
|
||||||
|
Loading…
Reference in New Issue
Block a user