4458N/A[DEFAULT]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.api.app
4458N/A#
4458N/A
6853N/A# Authentication strategy used by ironic-api. "noauth" should
6853N/A# not be used in a production environment because all
6853N/A# authentication will be disabled. (string value)
6853N/A# Possible values: noauth, keystone
4458N/A#auth_strategy=keystone
4458N/A
6853N/A# Return server tracebacks in the API response for any error
6853N/A# responses. WARNING: this is insecure and should not be used
6853N/A# in a production environment. (boolean value)
6853N/A#debug_tracebacks_in_api=false
6853N/A
5403N/A# Enable pecan debug mode. WARNING: this is insecure and
6853N/A# should not be used in a production environment. (boolean
6853N/A# value)
5403N/A#pecan_debug=false
5403N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.driver_factory
4458N/A#
4458N/A
4458N/A# Specify the list of drivers to load during service
4458N/A# initialization. Missing drivers, or drivers which fail to
4458N/A# initialize, will prevent the conductor service from
4458N/A# starting. The option default is a recommended set of
4458N/A# production-oriented drivers. A complete list of drivers
4458N/A# present on your system may be found by enumerating the
4458N/A# "ironic.drivers" entrypoint. An example may be found in the
4458N/A# developer documentation online. (list value)
4458N/Aenabled_drivers=solaris
4458N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.exception
4458N/A#
4458N/A
6853N/A# Used if there is a formatting error when generating an
6853N/A# exception message (a programming error). If True, raise an
6853N/A# exception; if False, use the unformatted message. (boolean
6853N/A# value)
4458N/A#fatal_exception_format_errors=false
4458N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.hash_ring
4458N/A#
4458N/A
4458N/A# Exponent to determine number of hash partitions to use when
4458N/A# distributing load across conductors. Larger values will
4458N/A# result in more even distribution of load and less load when
4458N/A# rebalancing the ring, but more memory usage. Number of
4458N/A# partitions per conductor is (2^hash_partition_exponent).
4458N/A# This determines the granularity of rebalancing: given 10
4458N/A# hosts, and an exponent of the 2, there are 40 partitions in
4458N/A# the ring.A few thousand partitions should make rebalancing
4458N/A# smooth in most cases. The default is suitable for up to a
4458N/A# few hundred conductors. Too many partitions has a CPU
4458N/A# impact. (integer value)
4458N/A#hash_partition_exponent=5
4458N/A
4458N/A# [Experimental Feature] Number of hosts to map onto each hash
4458N/A# partition. Setting this to more than one will cause
4458N/A# additional conductor services to prepare deployment
4458N/A# environments and potentially allow the Ironic cluster to
4458N/A# recover more quickly if a conductor instance is terminated.
4458N/A# (integer value)
4458N/A#hash_distribution_replicas=1
4458N/A
6853N/A# Interval (in seconds) between hash ring resets. (integer
6853N/A# value)
6853N/A#hash_ring_reset_interval=180
6853N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.images
4458N/A#
4458N/A
6853N/A# If True, convert backing images to "raw" disk image format.
6853N/A# (boolean value)
4458N/A#force_raw_images=true
4458N/A
4458N/A# Path to isolinux binary file. (string value)
4458N/A#isolinux_bin=/usr/lib/syslinux/isolinux.bin
4458N/A
4458N/A# Template file for isolinux configuration file. (string
4458N/A# value)
4458N/A#isolinux_config_template=$pybasedir/common/isolinux_config.template
4458N/A
5403N/A# Template file for grub configuration file. (string value)
5403N/A#grub_config_template=$pybasedir/common/grub_conf.template
5403N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.paths
4458N/A#
4458N/A
4458N/A# Directory where the ironic python module is installed.
4458N/A# (string value)
4458N/Apybasedir=/usr/lib/python2.7/vendor-packages/ironic
4458N/A
4458N/A# Directory where ironic binaries are installed. (string
4458N/A# value)
4458N/Abindir=/usr/lib/ironic
4458N/A
4458N/A# Top-level directory for maintaining ironic's state. (string
4458N/A# value)
4458N/Astate_path=/var/lib/ironic
4458N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.service
4458N/A#
4458N/A
6853N/A# Default interval (in seconds) for running driver periodic
6853N/A# tasks. (integer value)
6853N/A# This option is deprecated and planned for removal in a future release.
4458N/A#periodic_interval=60
4458N/A
6853N/A# Name of this node. This can be an opaque identifier. It is
4458N/A# not necessarily a hostname, FQDN, or IP address. However,
4458N/A# the node name must be valid within an AMQP key, and if using
4458N/A# ZeroMQ, a valid hostname, FQDN, or IP address. (string
4458N/A# value)
6853N/A#host=localhost
4458N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.utils
4458N/A#
4458N/A
4458N/A# Path to the rootwrap configuration file to use for running
4458N/A# commands as root. (string value)
4458N/A#rootwrap_config=/etc/ironic/rootwrap.conf
4458N/A
6853N/A# Temporary working directory, default is Python temp dir.
6853N/A# (string value)
6853N/A#tempdir=/tmp
4458N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.image_cache
4458N/A#
4458N/A
4458N/A# Run image downloads and raw format conversions in parallel.
4458N/A# (boolean value)
4458N/A#parallel_image_downloads=false
4458N/A
4458N/A
4458N/A#
6853N/A# Options defined in ironic.netconf
4458N/A#
4458N/A
6853N/A# IP address of this host. If unset, will determine the IP
6853N/A# programmatically. If unable to do so, will use "127.0.0.1".
4458N/A# (string value)
6853N/A#my_ip=10.0.0.1
4458N/A
5444N/A
4458N/A#
6853N/A# Options defined in oslo.log
6853N/A#
6853N/A
6853N/A# If set to true, the logging level will be set to DEBUG
6853N/A# instead of the default INFO level. (boolean value)
6853N/A#debug=false
6853N/A
6853N/A# If set to false, the logging level will be set to WARNING
6853N/A# instead of the default INFO level. (boolean value)
6853N/A# This option is deprecated and planned for removal in a future release.
6853N/A#verbose=true
6853N/A
6853N/A# The name of a logging configuration file. This file is
6853N/A# appended to any existing logging configuration files. For
6853N/A# details about logging configuration files, see the Python
6853N/A# logging module documentation. Note that when logging
6853N/A# configuration files are used then all logging configuration
6853N/A# is set in the configuration file and other logging
6853N/A# configuration options are ignored (for example,
6853N/A# logging_context_format_string). (string value)
6853N/A# Deprecated group/name - [DEFAULT]/log_config
6853N/A#log_config_append=<None>
6853N/A
6853N/A# Defines the format string for %%(asctime)s in log records.
6853N/A# Default: %(default)s . This option is ignored if
6853N/A# log_config_append is set. (string value)
6853N/A#log_date_format=%Y-%m-%d %H:%M:%S
6853N/A
6853N/A# (Optional) Name of log file to send logging output to. If no
6853N/A# default is set, logging will go to stderr as defined by
6853N/A# use_stderr. This option is ignored if log_config_append is
6853N/A# set. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/logfile
6853N/A#log_file=<None>
6853N/A
6853N/A# (Optional) The base directory used for relative log_file
6853N/A# paths. This option is ignored if log_config_append is set.
6853N/A# (string value)
6853N/A# Deprecated group/name - [DEFAULT]/logdir
6853N/A#log_dir=<None>
6853N/A
6853N/A# Uses logging handler designed to watch file system. When log
6853N/A# file is moved or removed this handler will open a new log
6853N/A# file with specified path instantaneously. It makes sense
6853N/A# only if log_file option is specified and Linux platform is
6853N/A# used. This option is ignored if log_config_append is set.
6853N/A# (boolean value)
6853N/A#watch_log_file=false
6853N/A
6853N/A# Use syslog for logging. Existing syslog format is DEPRECATED
6853N/A# and will be changed later to honor RFC5424. This option is
6853N/A# ignored if log_config_append is set. (boolean value)
6853N/A#use_syslog=false
6853N/A
6853N/A# Syslog facility to receive log lines. This option is ignored
6853N/A# if log_config_append is set. (string value)
6853N/A#syslog_log_facility=LOG_USER
6853N/A
6853N/A# Log output to standard error. This option is ignored if
6853N/A# log_config_append is set. (boolean value)
6853N/A#use_stderr=true
6853N/A
6853N/A# Format string to use for log messages with context. (string
6853N/A# value)
6853N/A#logging_context_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
6853N/A
6853N/A# Format string to use for log messages when context is
6853N/A# undefined. (string value)
6853N/A#logging_default_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
6853N/A
6853N/A# Additional data to append to log message when logging level
6853N/A# for the message is DEBUG. (string value)
6853N/A#logging_debug_format_suffix=%(funcName)s %(pathname)s:%(lineno)d
6853N/A
6853N/A# Prefix each line of exception output with this format.
6853N/A# (string value)
6853N/A#logging_exception_prefix=%(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
6853N/A
6853N/A# Defines the format string for %(user_identity)s that is used
6853N/A# in logging_context_format_string. (string value)
6853N/A#logging_user_identity_format=%(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
6853N/A
6853N/A# List of package logging levels in logger=LEVEL pairs. This
6853N/A# option is ignored if log_config_append is set. (list value)
6853N/A#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
6853N/A
6853N/A# Enables or disables publication of error events. (boolean
6853N/A# value)
6853N/A#publish_errors=false
6853N/A
6853N/A# The format for an instance that is passed with the log
6853N/A# message. (string value)
6853N/A#instance_format="[instance: %(uuid)s] "
6853N/A
6853N/A# The format for an instance UUID that is passed with the log
6853N/A# message. (string value)
6853N/A#instance_uuid_format="[instance: %(uuid)s] "
6853N/A
6853N/A# Enables or disables fatal status of deprecations. (boolean
6853N/A# value)
6853N/A#fatal_deprecations=false
6853N/A
6853N/A
6853N/A#
6853N/A# Options defined in oslo.messaging
6853N/A#
6853N/A
6853N/A# Size of RPC connection pool. (integer value)
6853N/A# Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
6853N/A#rpc_conn_pool_size=30
6853N/A
6853N/A# ZeroMQ bind address. Should be a wildcard (*), an ethernet
6853N/A# interface, or IP. The "host" option should point or resolve
6853N/A# to this address. (string value)
6853N/A#rpc_zmq_bind_address=*
6853N/A
6853N/A# MatchMaker driver. (string value)
6853N/A# Possible values: redis, dummy
6853N/A#rpc_zmq_matchmaker=redis
6853N/A
6853N/A# Type of concurrency used. Either "native" or "eventlet"
6853N/A# (string value)
6853N/A#rpc_zmq_concurrency=eventlet
6853N/A
6853N/A# Number of ZeroMQ contexts, defaults to 1. (integer value)
6853N/A#rpc_zmq_contexts=1
6853N/A
6853N/A# Maximum number of ingress messages to locally buffer per
6853N/A# topic. Default is unlimited. (integer value)
6853N/A#rpc_zmq_topic_backlog=<None>
6853N/A
6853N/A# Directory for holding IPC sockets. (string value)
6853N/A#rpc_zmq_ipc_dir=/var/run/openstack
6853N/A
6853N/A# Name of this node. Must be a valid hostname, FQDN, or IP
6853N/A# address. Must match "host" option, if running Nova. (string
6853N/A# value)
6853N/A#rpc_zmq_host=localhost
6853N/A
6853N/A# Seconds to wait before a cast expires (TTL). The default
6853N/A# value of -1 specifies an infinite linger period. The value
6853N/A# of 0 specifies no linger period. Pending messages shall be
6853N/A# discarded immediately when the socket is closed. Only
6853N/A# supported by impl_zmq. (integer value)
6853N/A#rpc_cast_timeout=-1
6853N/A
6853N/A# The default number of seconds that poll should wait. Poll
6853N/A# raises timeout exception when timeout expired. (integer
6853N/A# value)
6853N/A#rpc_poll_timeout=1
6853N/A
6853N/A# Expiration timeout in seconds of a name service record about
6853N/A# existing target ( < 0 means no timeout). (integer value)
6853N/A#zmq_target_expire=120
6853N/A
6853N/A# Use PUB/SUB pattern for fanout methods. PUB/SUB always uses
6853N/A# proxy. (boolean value)
6853N/A#use_pub_sub=true
6853N/A
6853N/A# Minimal port number for random ports range. (port value)
6853N/A# Possible values: 0-65535
6853N/A#rpc_zmq_min_port=49152
6853N/A
6853N/A# Maximal port number for random ports range. (integer value)
6853N/A# Possible values: 1-65536
6853N/A#rpc_zmq_max_port=65536
6853N/A
6853N/A# Number of retries to find free port number before fail with
6853N/A# ZMQBindError. (integer value)
6853N/A#rpc_zmq_bind_port_retries=100
6853N/A
6853N/A# Size of executor thread pool. (integer value)
6853N/A# Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
6853N/A#executor_thread_pool_size=64
6853N/A
6853N/A# Seconds to wait for a response from a call. (integer value)
6853N/A#rpc_response_timeout=60
6853N/A
6853N/A# A URL representing the messaging driver to use and its full
6853N/A# configuration. If not set, we fall back to the rpc_backend
6853N/A# option and driver specific configuration. (string value)
6853N/A#transport_url=<None>
6853N/A
6853N/A# The messaging driver to use, defaults to rabbit. Other
6853N/A# drivers include amqp and zmq. (string value)
6853N/A#rpc_backend=rabbit
6853N/A
6853N/A# The default exchange under which topics are scoped. May be
6853N/A# overridden by an exchange name specified in the
6853N/A# transport_url option. (string value)
6853N/A#control_exchange=openstack
6853N/A
6853N/A
6853N/A#
6853N/A# Options defined in oslo.service.periodic_task
6853N/A#
6853N/A
6853N/A# Some periodic tasks can be run in a separate process. Should
6853N/A# we run them here? (boolean value)
6853N/A#run_external_periodic_tasks=true
6853N/A
6853N/A
6853N/A#
6853N/A# Options defined in oslo.service.service
4458N/A#
4458N/A
4458N/A# Enable eventlet backdoor. Acceptable values are 0, <port>,
4458N/A# and <start>:<end>, where 0 results in listening on a random
4458N/A# tcp port number; <port> results in listening on the
4458N/A# specified port number (and not enabling backdoor if that
4458N/A# port is in use); and <start>:<end> results in listening on
4458N/A# the smallest unused port number within the specified range
4458N/A# of port numbers. The chosen port is displayed in the
4458N/A# service's log file. (string value)
4458N/A#backdoor_port=<None>
4458N/A
6853N/A# Enable eventlet backdoor, using the provided path as a unix
6853N/A# socket that can receive connections. This option is mutually
6853N/A# exclusive with 'backdoor_port' in that only one should be
6853N/A# provided. If both are provided then the existence of this
6853N/A# option overrides the usage of that option. (string value)
6853N/A#backdoor_socket=<None>
6853N/A
6853N/A# Enables or disables logging values of all registered options
6853N/A# when starting a service (at DEBUG level). (boolean value)
6853N/A#log_options=true
6853N/A
6853N/A# Specify a timeout after which a gracefully shutdown server
6853N/A# will exit. Zero value means endless wait. (integer value)
6853N/A#graceful_shutdown_timeout=60
4458N/A
4458N/A
4458N/A#
6853N/A# Options defined in oslo.service.wsgi
4458N/A#
4458N/A
6853N/A# File name for the paste.deploy config for api service
6853N/A# (string value)
6853N/A#api_paste_config=api-paste.ini
6853N/A
6853N/A# A python format string that is used as the template to
6853N/A# generate log lines. The following values can beformatted
6853N/A# into it: client_ip, date_time, request_line, status_code,
6853N/A# body_length, wall_seconds. (string value)
6853N/A#wsgi_log_format=%(client_ip)s "%(request_line)s" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f
6853N/A
6853N/A# Sets the value of TCP_KEEPIDLE in seconds for each server
6853N/A# socket. Not supported on OS X. (integer value)
6853N/A#tcp_keepidle=600
6853N/A
6853N/A# Size of the pool of greenthreads used by wsgi (integer
5403N/A# value)
6853N/A#wsgi_default_pool_size=100
6853N/A
6853N/A# Maximum line size of message headers to be accepted.
6853N/A# max_header_line may need to be increased when using large
6853N/A# tokens (typically those generated when keystone is
6853N/A# configured to use PKI tokens with big service catalogs).
6853N/A# (integer value)
6853N/A#max_header_line=16384
6853N/A
6853N/A# If False, closes the client socket connection explicitly.
6853N/A# (boolean value)
6853N/A#wsgi_keep_alive=true
6853N/A
6853N/A# Timeout for client connections' socket operations. If an
6853N/A# incoming connection is idle for this number of seconds it
6853N/A# will be closed. A value of '0' means wait forever. (integer
6853N/A# value)
6853N/A#client_socket_timeout=900
5403N/A
5403N/A
4458N/A[agent]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.agent
4458N/A#
4458N/A
6853N/A# DEPRECATED. Additional append parameters for baremetal PXE
6853N/A# boot. This option is deprecated and will be removed in
6853N/A# Mitaka release. Please use [pxe]pxe_append_params instead.
6853N/A# (string value)
4458N/A#agent_pxe_append_params=nofb nomodeset vga=normal
4458N/A
6853N/A# DEPRECATED. Template file for PXE configuration. This option
6853N/A# is deprecated and will be removed in Mitaka release. Please
6853N/A# use [pxe]pxe_config_template instead. (string value)
4458N/A#agent_pxe_config_template=$pybasedir/drivers/modules/agent_config.template
4458N/A
6853N/A# Whether Ironic will manage booting of the agent ramdisk. If
6853N/A# set to False, you will need to configure your mechanism to
6853N/A# allow booting the agent ramdisk. (boolean value)
6853N/A# Deprecated group/name - [agent]/manage_tftp
6853N/A#manage_agent_boot=true
6853N/A
6853N/A# The memory size in MiB consumed by agent when it is booted
6853N/A# on a bare metal node. This is used for checking if the image
6853N/A# can be downloaded and deployed on the bare metal node after
6853N/A# booting agent ramdisk. This may be set according to the
6853N/A# memory consumed by the agent ramdisk image. (integer value)
6853N/A#memory_consumed_by_agent=0
6853N/A
6853N/A# Whether the agent ramdisk should stream raw images directly
6853N/A# onto the disk or not. By streaming raw images directly onto
6853N/A# the disk the agent ramdisk will not spend time copying the
6853N/A# image to a tmpfs partition (therefore consuming less memory)
6853N/A# prior to writing it to the disk. Unless the disk where the
6853N/A# image will be copied to is really slow, this option should
6853N/A# be set to True. Defaults to True. (boolean value)
6853N/A#stream_raw_images=true
5403N/A
5403N/A
5403N/A#
5403N/A# Options defined in ironic.drivers.modules.agent_base_vendor
5403N/A#
5403N/A
4458N/A# Maximum interval (in seconds) for agent heartbeats. (integer
4458N/A# value)
4458N/A#heartbeat_timeout=300
4458N/A
6853N/A# Number of times to retry getting power state to check if
6853N/A# bare metal node has been powered off after a soft power off.
6853N/A# (integer value)
6853N/A#post_deploy_get_power_state_retries=6
6853N/A
6853N/A# Amount of time (in seconds) to wait between polling power
6853N/A# state after trigger soft poweroff. (integer value)
6853N/A#post_deploy_get_power_state_retry_interval=5
6853N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.agent_client
4458N/A#
4458N/A
4458N/A# API version to use for communicating with the ramdisk agent.
4458N/A# (string value)
4458N/A#agent_api_version=v1
4458N/A
4458N/A
4458N/A[ai]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.solaris_ipmitool
4458N/A#
4458N/A
4458N/A# Host name for AI Server. (string value)
4458N/Aserver=%AI_SERVER%
4458N/A
4458N/A# Username to ssh to AI Server. (string value)
4458N/Ausername=%AI_USERNAME%
4458N/A
5444N/A# Password for user to ssh to AI Server. If ssh_key_file or
5444N/A# ssh_key_contents are set, this config setting is used to
5444N/A# provide the passphrase if required. If an encrypted key is
5444N/A# used, set this to the passphrase. (string value)
4458N/A#password=<None>
4458N/A
4458N/A# SSH port to use. (string value)
4458N/A#port=22
4458N/A
4458N/A# SSH socket timeout value in seconds. (string value)
4458N/A#timeout=10
4458N/A
4458N/A# Interval in seconds to check AI deployment status. (string
4458N/A# value)
4458N/A#deploy_interval=10
4458N/A
4458N/A# Derived Manifest used for deployment. (string value)
4458N/A#derived_manifest=file:///usr/lib/ironic/ironic-manifest.ksh
4458N/A
4458N/A# SSH Filename to use. (string value)
4458N/A#ssh_key_file=<None>
4458N/A
4458N/A# Actual SSH Key contents to use. (string value)
4458N/A#ssh_key_contents=<None>
4458N/A
4458N/A
5403N/A[amt]
5403N/A
5403N/A#
5403N/A# Options defined in ironic.drivers.modules.amt.common
5403N/A#
5403N/A
6853N/A# Protocol used for AMT endpoint (string value)
6853N/A# Possible values: http, https
5403N/A#protocol=http
5403N/A
6853N/A# Time interval (in seconds) for successive awake call to AMT
6853N/A# interface, this depends on the IdleTimeout setting on AMT
6853N/A# interface. AMT Interface will go to sleep after 60 seconds
6853N/A# of inactivity by default. IdleTimeout=0 means AMT will not
6853N/A# go to sleep at all. Setting awake_interval=0 will disable
6853N/A# awake call. (integer value)
6853N/A# Minimum value: 0
6853N/A#awake_interval=60
6853N/A
5403N/A
5403N/A#
5403N/A# Options defined in ironic.drivers.modules.amt.power
5403N/A#
5403N/A
5403N/A# Maximum number of times to attempt an AMT operation, before
5403N/A# failing (integer value)
5403N/A#max_attempts=3
5403N/A
5403N/A# Amount of time (in seconds) to wait, before retrying an AMT
5403N/A# operation (integer value)
5403N/A#action_wait=10
5403N/A
5403N/A
4458N/A[api]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.api
4458N/A#
4458N/A
6853N/A# The IP address on which ironic-api listens. (string value)
4458N/A#host_ip=0.0.0.0
4458N/A
6853N/A# The TCP port on which ironic-api listens. (port value)
6853N/A# Possible values: 0-65535
4458N/A#port=6385
4458N/A
4458N/A# The maximum number of items returned in a single response
4458N/A# from a collection resource. (integer value)
4458N/A#max_limit=1000
4458N/A
6853N/A# Public URL to use when building the links to the API
6853N/A# resources (for example, "https://ironic.rocks:6384"). If
6853N/A# None the links will be built using the request's host URL.
6853N/A# If the API is operating behind a proxy, you will want to
6853N/A# change this to represent the proxy's URL. Defaults to None.
6853N/A# (string value)
6853N/A#public_endpoint=<None>
6853N/A
6853N/A# Number of workers for OpenStack Ironic API service. The
6853N/A# default is equal to the number of CPUs available if that can
6853N/A# be determined, else a default worker count of 1 is returned.
6853N/A# (integer value)
6853N/Aapi_workers=1
6853N/A
6853N/A# Enable the integrated stand-alone API to service requests
6853N/A# via HTTPS instead of HTTP. If there is a front-end service
6853N/A# performing HTTPS offloading from the service, this option
6853N/A# should be False; note, you will want to change public API
6853N/A# endpoint to represent SSL termination URL with
6853N/A# 'public_endpoint' option. (boolean value)
6853N/A#enable_ssl_api=false
6853N/A
6853N/A
6853N/A[cimc]
6853N/A
6853N/A#
6853N/A# Options defined in ironic.drivers.modules.cimc.power
6853N/A#
6853N/A
6853N/A# Number of times a power operation needs to be retried
6853N/A# (integer value)
6853N/A#max_retry=6
6853N/A
6853N/A# Amount of time in seconds to wait in between power
6853N/A# operations (integer value)
6853N/A#action_interval=10
6853N/A
6853N/A
6853N/A[cisco_ucs]
6853N/A
6853N/A#
6853N/A# Options defined in ironic.drivers.modules.ucs.power
6853N/A#
6853N/A
6853N/A# Number of times a power operation needs to be retried
6853N/A# (integer value)
6853N/A#max_retry=6
6853N/A
6853N/A# Amount of time in seconds to wait in between power
6853N/A# operations (integer value)
6853N/A#action_interval=5
6853N/A
4458N/A
4458N/A[conductor]
4458N/A
4458N/A#
6853N/A# Options defined in ironic.conductor.base_manager
6853N/A#
6853N/A
6853N/A# The size of the workers greenthread pool. Note that 2
6853N/A# threads will be reserved by the conductor itself for
6853N/A# handling heart beats and periodic tasks. (integer value)
6853N/A# Minimum value: 3
6853N/A#workers_pool_size=100
6853N/A
6853N/A# Seconds between conductor heart beats. (integer value)
6853N/A#heartbeat_interval=10
6853N/A
6853N/A
6853N/A#
4458N/A# Options defined in ironic.conductor.manager
4458N/A#
4458N/A
4458N/A# URL of Ironic API service. If not set ironic can get the
4458N/A# current value from the keystone service catalog. (string
4458N/A# value)
4458N/A#api_url=<None>
4458N/A
4458N/A# Maximum time (in seconds) since the last check-in of a
6853N/A# conductor. A conductor is considered inactive when this time
6853N/A# has been exceeded. (integer value)
4458N/A#heartbeat_timeout=60
4458N/A
4458N/A# Interval between syncing the node power state to the
4458N/A# database, in seconds. (integer value)
4458N/A#sync_power_state_interval=60
4458N/A
4458N/A# Interval between checks of provision timeouts, in seconds.
4458N/A# (integer value)
4458N/A#check_provision_state_interval=60
4458N/A
6853N/A# Timeout (seconds) to wait for a callback from a deploy
6853N/A# ramdisk. Set to 0 to disable timeout. (integer value)
4458N/A#deploy_callback_timeout=1800
4458N/A
4458N/A# During sync_power_state, should the hardware power state be
4458N/A# set to the state recorded in the database (True) or should
4458N/A# the database be updated based on the hardware state (False).
4458N/A# (boolean value)
4458N/A#force_power_state_during_sync=true
4458N/A
4458N/A# During sync_power_state failures, limit the number of times
4458N/A# Ironic should try syncing the hardware node power state with
4458N/A# the node power state in DB (integer value)
4458N/A#power_state_sync_max_retries=3
4458N/A
4458N/A# Maximum number of worker threads that can be started
4458N/A# simultaneously by a periodic task. Should be less than RPC
4458N/A# thread pool size. (integer value)
4458N/A#periodic_max_workers=8
4458N/A
4458N/A# Number of attempts to grab a node lock. (integer value)
4458N/A#node_locked_retry_attempts=3
4458N/A
4458N/A# Seconds to sleep between node lock attempts. (integer value)
4458N/A#node_locked_retry_interval=1
4458N/A
4458N/A# Enable sending sensor data message via the notification bus
4458N/A# (boolean value)
4458N/A#send_sensor_data=false
4458N/A
4458N/A# Seconds between conductor sending sensor data message to
4458N/A# ceilometer via the notification bus. (integer value)
4458N/A#send_sensor_data_interval=600
4458N/A
6853N/A# List of comma separated meter types which need to be sent to
6853N/A# Ceilometer. The default value, "ALL", is a special value
4458N/A# meaning send all the sensor data. (list value)
4458N/A#send_sensor_data_types=ALL
4458N/A
4458N/A# When conductors join or leave the cluster, existing
4458N/A# conductors may need to update any persistent local state as
4458N/A# nodes are moved around the cluster. This option controls how
4458N/A# often, in seconds, each conductor will check for nodes that
4458N/A# it should "take over". Set it to a negative value to disable
4458N/A# the check entirely. (integer value)
4458N/A#sync_local_state_interval=180
4458N/A
5403N/A# Whether to upload the config drive to Swift. (boolean value)
5403N/A#configdrive_use_swift=false
5403N/A
5403N/A# Name of the Swift container to store config drive data. Used
5403N/A# when configdrive_use_swift is True. (string value)
5403N/A#configdrive_swift_container=ironic_configdrive_container
5403N/A
5403N/A# Timeout (seconds) for waiting for node inspection. 0 -
5403N/A# unlimited. (integer value)
5403N/A#inspect_timeout=1800
5403N/A
6853N/A# Enables or disables automated cleaning. Automated cleaning
6853N/A# is a configurable set of steps, such as erasing disk drives,
6853N/A# that are performed on the node to ensure it is in a baseline
6853N/A# state and ready to be deployed to. This is done after
6853N/A# instance deletion as well as during the transition from a
6853N/A# "manageable" to "available" state. When enabled, the
5403N/A# particular steps performed to clean a node depend on which
5403N/A# driver that node is managed by; see the individual driver's
5403N/A# documentation for details. NOTE: The introduction of the
5403N/A# cleaning operation causes instance deletion to take
5403N/A# significantly longer. In an environment where all tenants
5403N/A# are trusted (eg, because there is only one tenant), this
5403N/A# option could be safely disabled. (boolean value)
6853N/A# Deprecated group/name - [conductor]/clean_nodes
6853N/A#automated_clean=true
6853N/A
6853N/A# Timeout (seconds) to wait for a callback from the ramdisk
6853N/A# doing the cleaning. If the timeout is reached the node will
6853N/A# be put in the "clean failed" provision state. Set to 0 to
6853N/A# disable timeout. (integer value)
6853N/A#clean_callback_timeout=1800
5403N/A
4458N/A
4458N/A[console]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.console_utils
4458N/A#
4458N/A
4458N/A# Path to serial console terminal program (string value)
4458N/A#terminal=shellinaboxd
4458N/A
4458N/A# Directory containing the terminal SSL cert(PEM) for serial
4458N/A# console access (string value)
4458N/A#terminal_cert_dir=<None>
4458N/A
4458N/A# Directory for holding terminal pid files. If not specified,
4458N/A# the temporary directory will be used. (string value)
4458N/A#terminal_pid_dir=<None>
4458N/A
4458N/A# Time interval (in seconds) for checking the status of
4458N/A# console subprocess. (integer value)
4458N/A#subprocess_checking_interval=1
4458N/A
4458N/A# Time (in seconds) to wait for the console subprocess to
4458N/A# start. (integer value)
4458N/A#subprocess_timeout=10
4458N/A
4458N/A
6853N/A[cors]
6853N/A
6853N/A#
6853N/A# Options defined in oslo.middleware
6853N/A#
6853N/A
6853N/A# Indicate whether this resource may be shared with the domain
6853N/A# received in the requests "origin" header. (list value)
6853N/A#allowed_origin=<None>
6853N/A
6853N/A# Indicate that the actual request can include user
6853N/A# credentials (boolean value)
6853N/A#allow_credentials=true
6853N/A
6853N/A# Indicate which headers are safe to expose to the API.
6853N/A# Defaults to HTTP Simple Headers. (list value)
6853N/A#expose_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
6853N/A
6853N/A# Maximum cache age of CORS preflight requests. (integer
6853N/A# value)
6853N/A#max_age=3600
6853N/A
6853N/A# Indicate which methods can be used during the actual
6853N/A# request. (list value)
6853N/A#allow_methods=GET,POST,PUT,DELETE,OPTIONS
6853N/A
6853N/A# Indicate which header field names may be used during the
6853N/A# actual request. (list value)
6853N/A#allow_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
6853N/A
6853N/A
6853N/A[cors.subdomain]
6853N/A
6853N/A#
6853N/A# Options defined in oslo.middleware
6853N/A#
6853N/A
6853N/A# Indicate whether this resource may be shared with the domain
6853N/A# received in the requests "origin" header. (list value)
6853N/A#allowed_origin=<None>
6853N/A
6853N/A# Indicate that the actual request can include user
6853N/A# credentials (boolean value)
6853N/A#allow_credentials=true
6853N/A
6853N/A# Indicate which headers are safe to expose to the API.
6853N/A# Defaults to HTTP Simple Headers. (list value)
6853N/A#expose_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
6853N/A
6853N/A# Maximum cache age of CORS preflight requests. (integer
6853N/A# value)
6853N/A#max_age=3600
6853N/A
6853N/A# Indicate which methods can be used during the actual
6853N/A# request. (list value)
6853N/A#allow_methods=GET,POST,PUT,DELETE,OPTIONS
6853N/A
6853N/A# Indicate which header field names may be used during the
6853N/A# actual request. (list value)
6853N/A#allow_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
6853N/A
6853N/A
4458N/A[database]
4458N/A
4458N/A#
6853N/A# Options defined in ironic.db.sqlalchemy.models
6853N/A#
6853N/A
6853N/A# MySQL engine to use. (string value)
6853N/A#mysql_engine=InnoDB
6853N/A
6853N/A
6853N/A#
4458N/A# Options defined in oslo.db
4458N/A#
4458N/A
4458N/A# The file name to use with SQLite. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/sqlite_db
4458N/A#sqlite_db=oslo.sqlite
4458N/A
4458N/A# If True, SQLite uses synchronous mode. (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/sqlite_synchronous
4458N/A#sqlite_synchronous=true
4458N/A
4458N/A# The back end to use for the database. (string value)
4458N/A# Deprecated group/name - [DEFAULT]/db_backend
4458N/A#backend=sqlalchemy
4458N/A
4458N/A# The SQLAlchemy connection string to use to connect to the
4458N/A# database. (string value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_connection
4458N/A# Deprecated group/name - [DATABASE]/sql_connection
4458N/A# Deprecated group/name - [sql]/connection
6853N/Aconnection=mysql://%SERVICE_USER%:%SERVICE_PASSWORD%@localhost/ironic
4458N/A
4458N/A# The SQLAlchemy connection string to use to connect to the
4458N/A# slave database. (string value)
4458N/A#slave_connection=<None>
4458N/A
4458N/A# The SQL mode to be used for MySQL sessions. This option,
4458N/A# including the default, overrides any server-set SQL mode. To
4458N/A# use whatever SQL mode is set by the server configuration,
4458N/A# set this to no value. Example: mysql_sql_mode= (string
4458N/A# value)
4458N/A#mysql_sql_mode=TRADITIONAL
4458N/A
6876N/A# This configures the MySQL storage engine. This allows for
6876N/A# OpenStack to support different storage engine such as
6876N/A# InnoDB, NDB, etc. By default, this value will be set to
6876N/A# InnoDB. For MySQL Cluster, set to NDBCLUSTER. Example:
6876N/A# mysql_storage_engine= (string value)
6876N/A#mysql_storage_engine=InnoDB
6864N/A
4458N/A# Timeout before idle SQL connections are reaped. (integer
4458N/A# value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_idle_timeout
4458N/A# Deprecated group/name - [DATABASE]/sql_idle_timeout
4458N/A# Deprecated group/name - [sql]/idle_timeout
4458N/A#idle_timeout=3600
4458N/A
4458N/A# Minimum number of SQL connections to keep open in a pool.
4458N/A# (integer value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_min_pool_size
4458N/A# Deprecated group/name - [DATABASE]/sql_min_pool_size
4458N/A#min_pool_size=1
4458N/A
4458N/A# Maximum number of SQL connections to keep open in a pool.
4458N/A# (integer value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_max_pool_size
4458N/A# Deprecated group/name - [DATABASE]/sql_max_pool_size
4458N/A#max_pool_size=<None>
4458N/A
5403N/A# Maximum number of database connection retries during
5403N/A# startup. Set to -1 to specify an infinite retry count.
5403N/A# (integer value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_max_retries
4458N/A# Deprecated group/name - [DATABASE]/sql_max_retries
4458N/A#max_retries=10
4458N/A
4458N/A# Interval between retries of opening a SQL connection.
4458N/A# (integer value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_retry_interval
4458N/A# Deprecated group/name - [DATABASE]/reconnect_interval
4458N/A#retry_interval=10
4458N/A
4458N/A# If set, use this value for max_overflow with SQLAlchemy.
4458N/A# (integer value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_max_overflow
4458N/A# Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
6853N/A#max_overflow=50
4458N/A
4458N/A# Verbosity of SQL debugging information: 0=None,
4458N/A# 100=Everything. (integer value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_connection_debug
4458N/A#connection_debug=0
4458N/A
4458N/A# Add Python stack traces to SQL as comment strings. (boolean
4458N/A# value)
4458N/A# Deprecated group/name - [DEFAULT]/sql_connection_trace
4458N/A#connection_trace=false
4458N/A
4458N/A# If set, use this value for pool_timeout with SQLAlchemy.
4458N/A# (integer value)
4458N/A# Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
4458N/A#pool_timeout=<None>
4458N/A
4458N/A# Enable the experimental use of database reconnect on
4458N/A# connection lost. (boolean value)
4458N/A#use_db_reconnect=false
4458N/A
5403N/A# Seconds between retries of a database transaction. (integer
5403N/A# value)
4458N/A#db_retry_interval=1
4458N/A
5403N/A# If True, increases the interval between retries of a
5403N/A# database operation up to db_max_retry_interval. (boolean
5403N/A# value)
4458N/A#db_inc_retry_interval=true
4458N/A
4458N/A# If db_inc_retry_interval is set, the maximum seconds between
5403N/A# retries of a database operation. (integer value)
4458N/A#db_max_retry_interval=10
4458N/A
5403N/A# Maximum retries in case of connection error or deadlock
5403N/A# error before error is raised. Set to -1 to specify an
5403N/A# infinite retry count. (integer value)
4458N/A#db_max_retries=20
4458N/A
4458N/A
5403N/A[deploy]
5403N/A
5403N/A#
5403N/A# Options defined in ironic.drivers.modules.deploy_utils
5403N/A#
5403N/A
6853N/A# ironic-conductor node's HTTP server URL. Example:
6853N/A# http://192.1.2.3:8080 (string value)
6853N/A# Deprecated group/name - [pxe]/http_url
6853N/A#http_url=<None>
6853N/A
6853N/A# ironic-conductor node's HTTP root path. (string value)
6853N/A# Deprecated group/name - [pxe]/http_root
6853N/A#http_root=/httpboot
6853N/A
6853N/A# Priority to run in-band erase devices via the Ironic Python
6853N/A# Agent ramdisk. If unset, will use the priority set in the
6853N/A# ramdisk (defaults to 10 for the GenericHardwareManager). If
6853N/A# set to 0, will not run during cleaning. (integer value)
6853N/A# Deprecated group/name - [agent]/agent_erase_devices_priority
6853N/A#erase_devices_priority=<None>
6853N/A
6853N/A# Number of iterations to be run for erasing devices. (integer
5403N/A# value)
6853N/A# Deprecated group/name - [agent]/agent_erase_devices_iterations
6853N/A#erase_devices_iterations=1
5403N/A
5403N/A
4458N/A[dhcp]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.dhcp_factory
4458N/A#
4458N/A
4458N/A# DHCP provider to use. "neutron" uses Neutron, and "none"
4458N/A# uses a no-op provider. (string value)
4458N/A#dhcp_provider=neutron
4458N/A
4458N/A
4458N/A[disk_partitioner]
4458N/A
4458N/A#
6853N/A# Options defined in ironic_lib.disk_partitioner
4458N/A#
4458N/A
4458N/A# After Ironic has completed creating the partition table, it
4458N/A# continues to check for activity on the attached iSCSI device
4458N/A# status at this interval prior to copying the image to the
4458N/A# node, in seconds (integer value)
4458N/A#check_device_interval=1
4458N/A
4458N/A# The maximum number of times to check that the device is not
4458N/A# accessed by another process. If the device is still busy
4458N/A# after that, the disk partitioning will be treated as having
4458N/A# failed. (integer value)
4458N/A#check_device_max_retries=20
4458N/A
4458N/A
6853N/A[disk_utils]
6853N/A
6853N/A#
6853N/A# Options defined in ironic_lib.disk_utils
6853N/A#
6853N/A
6853N/A# Size of EFI system partition in MiB when configuring UEFI
6853N/A# systems for local boot. (integer value)
6853N/A# Deprecated group/name - [deploy]/efi_system_partition_size
6853N/A#efi_system_partition_size=200
6853N/A
6853N/A# Block size to use when writing to the nodes disk. (string
6853N/A# value)
6853N/A# Deprecated group/name - [deploy]/dd_block_size
6853N/A#dd_block_size=1M
6853N/A
6853N/A# Maximum attempts to verify an iSCSI connection is active,
6853N/A# sleeping 1 second between attempts. (integer value)
6853N/A# Deprecated group/name - [deploy]/iscsi_verify_attempts
6853N/A#iscsi_verify_attempts=3
6853N/A
6853N/A
4458N/A[glance]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.glance_service.v2.image_service
4458N/A#
4458N/A
4458N/A# A list of URL schemes that can be downloaded directly via
4458N/A# the direct_url. Currently supported schemes: [file]. (list
4458N/A# value)
4458N/A#allowed_direct_url_schemes=
4458N/A
4458N/A# The secret token given to Swift to allow temporary URL
4458N/A# downloads. Required for temporary URLs. (string value)
4458N/A#swift_temp_url_key=<None>
4458N/A
4458N/A# The length of time in seconds that the temporary URL will be
4458N/A# valid for. Defaults to 20 minutes. If some deploys get a 401
4458N/A# response code when trying to download from the temporary
6853N/A# URL, try raising this duration. This value must be greater
6853N/A# than or equal to the value for
6853N/A# swift_temp_url_expected_download_start_delay (integer value)
4458N/A#swift_temp_url_duration=1200
4458N/A
6853N/A# Whether to cache generated Swift temporary URLs. Setting it
6853N/A# to true is only useful when an image caching proxy is used.
6853N/A# Defaults to False. (boolean value)
6853N/A#swift_temp_url_cache_enabled=false
6853N/A
6853N/A# This is the delay (in seconds) from the time of the deploy
6853N/A# request (when the Swift temporary URL is generated) to when
6853N/A# the IPA ramdisk starts up and URL is used for the image
6853N/A# download. This value is used to check if the Swift temporary
6853N/A# URL duration is large enough to let the image download
6853N/A# begin. Also if temporary URL caching is enabled this will
6853N/A# determine if a cached entry will still be valid when the
6853N/A# download starts. swift_temp_url_duration value must be
6853N/A# greater than or equal to this option's value. Defaults to 0.
6853N/A# (integer value)
6853N/A# Minimum value: 0
6853N/A#swift_temp_url_expected_download_start_delay=0
6853N/A
4458N/A# The "endpoint" (scheme, hostname, optional port) for the
4458N/A# Swift URL of the form
6853N/A# "endpoint_url/api_version/[account/]container/object_id". Do
4458N/A# not include trailing "/". For example, use
6853N/A# "https://swift.example.com". If using RADOS Gateway,
6853N/A# endpoint may also contain /swift path; if it does not, it
6853N/A# will be appended. Required for temporary URLs. (string
6853N/A# value)
4458N/A#swift_endpoint_url=<None>
4458N/A
4458N/A# The Swift API version to create a temporary URL for.
4458N/A# Defaults to "v1". Swift temporary URL format:
6853N/A# "endpoint_url/api_version/[account/]container/object_id"
4458N/A# (string value)
4458N/A#swift_api_version=v1
4458N/A
4458N/A# The account that Glance uses to communicate with Swift. The
4458N/A# format is "AUTH_uuid". "uuid" is the UUID for the account
4458N/A# configured in the glance-api.conf. Required for temporary
6853N/A# URLs when Glance backend is Swift. For example:
4458N/A# "AUTH_a422b2-91f3-2f46-74b7-d7c9e8958f5d30". Swift temporary
4458N/A# URL format:
6853N/A# "endpoint_url/api_version/[account/]container/object_id"
4458N/A# (string value)
4458N/A#swift_account=<None>
4458N/A
4458N/A# The Swift container Glance is configured to store its images
4458N/A# in. Defaults to "glance", which is the default in glance-
4458N/A# api.conf. Swift temporary URL format:
6853N/A# "endpoint_url/api_version/[account/]container/object_id"
4458N/A# (string value)
4458N/A#swift_container=glance
4458N/A
5403N/A# This should match a config by the same name in the Glance
5403N/A# configuration file. When set to 0, a single-tenant store
5403N/A# will only use one container to store all images. When set to
5403N/A# an integer value between 1 and 32, a single-tenant store
5403N/A# will use multiple containers to store images, and this value
5403N/A# will determine how many containers are created. (integer
5403N/A# value)
5403N/A#swift_store_multiple_containers_seed=0
5403N/A
6853N/A# Type of endpoint to use for temporary URLs. If the Glance
6853N/A# backend is Swift, use "swift"; if it is CEPH with RADOS
6853N/A# gateway, use "radosgw". (string value)
6853N/A# Possible values: swift, radosgw
6853N/A#temp_url_endpoint_type=swift
6853N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.image_service
4458N/A#
4458N/A
4458N/A# Default glance hostname or IP address. (string value)
4458N/A#glance_host=$my_ip
4458N/A
6853N/A# Default glance port. (port value)
6853N/A# Possible values: 0-65535
4458N/A#glance_port=9292
4458N/A
4458N/A# Default protocol to use when connecting to glance. Set to
4458N/A# https for SSL. (string value)
6853N/A# Possible values: http, https
4458N/A#glance_protocol=http
4458N/A
4458N/A# A list of the glance api servers available to ironic. Prefix
4458N/A# with https:// for SSL-based glance API servers. Format is
5403N/A# [hostname|IP]:port. (list value)
4458N/A#glance_api_servers=<None>
4458N/A
4458N/A# Allow to perform insecure SSL (https) requests to glance.
4458N/A# (boolean value)
4458N/A#glance_api_insecure=false
4458N/A
4458N/A# Number of retries when downloading an image from glance.
4458N/A# (integer value)
4458N/A#glance_num_retries=0
4458N/A
5403N/A# Authentication strategy to use when connecting to glance.
6853N/A# (string value)
6853N/A# Possible values: keystone, noauth
4458N/A#auth_strategy=keystone
4458N/A
6853N/A# Optional path to a CA certificate bundle to be used to
6853N/A# validate the SSL certificate served by glance. It is used
6853N/A# when glance_api_insecure is set to False. (string value)
6853N/A#glance_cafile=<None>
6853N/A
6853N/A
6853N/A[iboot]
6853N/A
6853N/A#
6853N/A# Options defined in ironic.drivers.modules.iboot
6853N/A#
6853N/A
6853N/A# Maximum retries for iBoot operations (integer value)
6853N/A#max_retry=3
6853N/A
6853N/A# Time (in seconds) between retry attempts for iBoot
6853N/A# operations (integer value)
6853N/A#retry_interval=1
6853N/A
6853N/A# Time (in seconds) to sleep between when rebooting (powering
6853N/A# off and on again). (integer value)
6853N/A# Minimum value: 0
6853N/A#reboot_delay=5
6853N/A
4458N/A
4458N/A[ilo]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.ilo.common
4458N/A#
4458N/A
4458N/A# Timeout (in seconds) for iLO operations (integer value)
4458N/A#client_timeout=60
4458N/A
6853N/A# Port to be used for iLO operations (port value)
6853N/A# Possible values: 0-65535
4458N/A#client_port=443
4458N/A
4458N/A# The Swift iLO container to store data. (string value)
4458N/A#swift_ilo_container=ironic_ilo_container
4458N/A
4458N/A# Amount of time in seconds for Swift objects to auto-expire.
4458N/A# (integer value)
4458N/A#swift_object_expiry_timeout=900
4458N/A
6853N/A# Set this to True to use http web server to host floppy
6853N/A# images and generated boot ISO. This requires http_root and
6853N/A# http_url to be configured in the [deploy] section of the
6853N/A# config file. If this is set to False, then Ironic will use
6853N/A# Swift to host the floppy images and generated boot_iso.
6853N/A# (boolean value)
6853N/A#use_web_server_for_images=false
6853N/A
4458N/A
4458N/A#
5403N/A# Options defined in ironic.drivers.modules.ilo.deploy
5403N/A#
5403N/A
5403N/A# Priority for erase devices clean step. If unset, it defaults
5403N/A# to 10. If set to 0, the step will be disabled and will not
5403N/A# run during cleaning. (integer value)
5403N/A#clean_priority_erase_devices=<None>
5403N/A
5403N/A
5403N/A#
5403N/A# Options defined in ironic.drivers.modules.ilo.management
5403N/A#
5403N/A
5403N/A# Priority for reset_ilo clean step. (integer value)
6853N/A#clean_priority_reset_ilo=0
5403N/A
5403N/A# Priority for reset_bios_to_default clean step. (integer
5403N/A# value)
5403N/A#clean_priority_reset_bios_to_default=10
5403N/A
5403N/A# Priority for reset_secure_boot_keys clean step. This step
6853N/A# will reset the secure boot keys to manufacturing defaults.
5403N/A# (integer value)
5403N/A#clean_priority_reset_secure_boot_keys_to_default=20
5403N/A
5403N/A# Priority for clear_secure_boot_keys clean step. This step is
6853N/A# not enabled by default. It can be enabled to clear all
5403N/A# secure boot keys enrolled with iLO. (integer value)
5403N/A#clean_priority_clear_secure_boot_keys=0
5403N/A
5403N/A# Priority for reset_ilo_credential clean step. This step
5403N/A# requires "ilo_change_password" parameter to be updated in
5403N/A# nodes's driver_info with the new password. (integer value)
5403N/A#clean_priority_reset_ilo_credential=30
5403N/A
5403N/A
5403N/A#
4458N/A# Options defined in ironic.drivers.modules.ilo.power
4458N/A#
4458N/A
4458N/A# Number of times a power operation needs to be retried
4458N/A# (integer value)
4458N/A#power_retry=6
4458N/A
4458N/A# Amount of time in seconds to wait in between power
4458N/A# operations (integer value)
4458N/A#power_wait=2
4458N/A
4458N/A
6853N/A[inspector]
6853N/A
6853N/A#
6853N/A# Options defined in ironic.drivers.modules.inspector
6853N/A#
6853N/A
6853N/A# whether to enable inspection using ironic-inspector (boolean
6853N/A# value)
6853N/A# Deprecated group/name - [discoverd]/enabled
6853N/A#enabled=false
6853N/A
6853N/A# ironic-inspector HTTP endpoint. If this is not set, the
6853N/A# ironic-inspector client default (http://127.0.0.1:5050) will
6853N/A# be used. (string value)
6853N/A# Deprecated group/name - [discoverd]/service_url
6853N/A#service_url=<None>
6853N/A
6853N/A# period (in seconds) to check status of nodes on inspection
6853N/A# (integer value)
6853N/A# Deprecated group/name - [discoverd]/status_check_period
6853N/A#status_check_period=60
6853N/A
6853N/A
4458N/A[ipmi]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.ipminative
4458N/A#
4458N/A
5403N/A# Maximum time in seconds to retry IPMI operations. There is a
5403N/A# tradeoff when setting this value. Setting this too low may
5403N/A# cause older BMCs to crash and require a hard reset. However,
5403N/A# setting too high can cause the sync power state periodic
5403N/A# task to hang when there are slow or unresponsive BMCs.
5403N/A# (integer value)
4458N/A#retry_timeout=60
4458N/A
4458N/A# Minimum time, in seconds, between IPMI operations sent to a
4458N/A# server. There is a risk with some hardware that setting this
4458N/A# too low may cause the BMC to crash. Recommended setting is 5
4458N/A# seconds. (integer value)
4458N/A#min_command_interval=5
4458N/A
4458N/A
5403N/A[irmc]
5403N/A
5403N/A#
6853N/A# Options defined in ironic.drivers.modules.irmc.boot
6853N/A#
6853N/A
6853N/A# Ironic conductor node's "NFS" or "CIFS" root path (string
6853N/A# value)
6853N/A#remote_image_share_root=/remote_image_share_root
6853N/A
6853N/A# IP of remote image server (string value)
6853N/A#remote_image_server=<None>
6853N/A
6853N/A# Share type of virtual media (string value)
6853N/A# Possible values: CIFS, NFS
6853N/A#remote_image_share_type=CIFS
6853N/A
6853N/A# share name of remote_image_server (string value)
6853N/A#remote_image_share_name=share
6853N/A
6853N/A# User name of remote_image_server (string value)
6853N/A#remote_image_user_name=<None>
6853N/A
6853N/A# Password of remote_image_user_name (string value)
6853N/A#remote_image_user_password=<None>
6853N/A
6853N/A# Domain name of remote_image_user_name (string value)
6853N/A#remote_image_user_domain=
6853N/A
6853N/A
6853N/A#
5403N/A# Options defined in ironic.drivers.modules.irmc.common
5403N/A#
5403N/A
6853N/A# Port to be used for iRMC operations (port value)
6853N/A# Possible values: 443, 80
5403N/A#port=443
5403N/A
6853N/A# Authentication method to be used for iRMC operations (string
6853N/A# value)
6853N/A# Possible values: basic, digest
5403N/A#auth_method=basic
5403N/A
5403N/A# Timeout (in seconds) for iRMC operations (integer value)
5403N/A#client_timeout=60
5403N/A
6853N/A# Sensor data retrieval method. (string value)
6853N/A# Possible values: ipmitool, scci
5403N/A#sensor_method=ipmitool
5403N/A
6853N/A# SNMP protocol version (string value)
6853N/A# Possible values: v1, v2c, v3
6853N/A#snmp_version=v2c
6853N/A
6853N/A# SNMP port (port value)
6853N/A# Possible values: 0-65535
6853N/A#snmp_port=161
6853N/A
6853N/A# SNMP community. Required for versions "v1" and "v2c" (string
6853N/A# value)
6853N/A#snmp_community=public
6853N/A
6853N/A# SNMP security name. Required for version "v3" (string value)
6853N/A#snmp_security=<None>
6853N/A
6853N/A
6853N/A[ironic_lib]
6853N/A
6853N/A#
6853N/A# Options defined in ironic_lib.utils
6853N/A#
6853N/A
6853N/A# Command that is prefixed to commands that are run as root.
6853N/A# If not specified, no commands are run as root. (string
6853N/A# value)
6853N/A#root_helper=sudo ironic-rootwrap /etc/ironic/rootwrap.conf
6853N/A
5403N/A
5403N/A[keystone]
5403N/A
5403N/A#
5403N/A# Options defined in ironic.common.keystone
5403N/A#
5403N/A
6853N/A# The region used for getting endpoints of OpenStack services.
5403N/A# (string value)
5403N/A#region_name=<None>
5403N/A
5403N/A
4458N/A[keystone_authtoken]
4458N/A
4458N/A#
4458N/A# Options defined in keystonemiddleware.auth_token
4458N/A#
4458N/A
5403N/A# Complete public Identity API endpoint. (string value)
6853N/Aauth_uri=http://127.0.0.1:5000/v2.0/
4458N/A
5403N/A# API version of the admin Identity API endpoint. (string
4458N/A# value)
4458N/A#auth_version=<None>
4458N/A
4458N/A# Do not handle authorization requests within the middleware,
4458N/A# but delegate the authorization decision to downstream WSGI
5403N/A# components. (boolean value)
4458N/A#delay_auth_decision=false
4458N/A
4458N/A# Request timeout value for communicating with Identity API
5403N/A# server. (integer value)
4458N/A#http_connect_timeout=<None>
4458N/A
4458N/A# How many times are we trying to reconnect when communicating
4458N/A# with Identity API Server. (integer value)
4458N/A#http_request_max_retries=3
4458N/A
5403N/A# Env key for the swift cache. (string value)
4458N/A#cache=<None>
4458N/A
5403N/A# Required if identity server requires client certificate
4458N/A# (string value)
4458N/A#certfile=<None>
4458N/A
5403N/A# Required if identity server requires client certificate
4458N/A# (string value)
4458N/A#keyfile=<None>
4458N/A
4458N/A# A PEM encoded Certificate Authority to use when verifying
4458N/A# HTTPs connections. Defaults to system CAs. (string value)
4458N/A#cafile=<None>
4458N/A
4458N/A# Verify HTTPS connections. (boolean value)
4458N/A#insecure=false
4458N/A
6853N/A# The region in which the identity server can be found.
6853N/A# (string value)
6853N/A#region_name=<None>
6853N/A
5403N/A# Directory used to cache files related to PKI tokens. (string
4458N/A# value)
4458N/Asigning_dir=$state_path/keystone-signing
4458N/A
4458N/A# Optionally specify a list of memcached server(s) to use for
4458N/A# caching. If left undefined, tokens will instead be cached
4458N/A# in-process. (list value)
6853N/A# Deprecated group/name - [keystone_authtoken]/memcache_servers
4458N/A#memcached_servers=<None>
4458N/A
4458N/A# In order to prevent excessive effort spent validating
4458N/A# tokens, the middleware caches previously-seen tokens for a
4458N/A# configurable duration (in seconds). Set to -1 to disable
4458N/A# caching completely. (integer value)
4458N/A#token_cache_time=300
4458N/A
4458N/A# Determines the frequency at which the list of revoked tokens
4458N/A# is retrieved from the Identity service (in seconds). A high
4458N/A# number of revocation events combined with a low cache
4458N/A# duration may significantly reduce performance. (integer
4458N/A# value)
4458N/A#revocation_cache_time=10
4458N/A
5403N/A# (Optional) If defined, indicate whether token data should be
6853N/A# authenticated or authenticated and encrypted. If MAC, token
6853N/A# data is authenticated (with HMAC) in the cache. If ENCRYPT,
6853N/A# token data is encrypted and authenticated in the cache. If
6853N/A# the value is not one of these options or empty, auth_token
6853N/A# will raise an exception on initialization. (string value)
6853N/A# Possible values: None, MAC, ENCRYPT
6853N/A#memcache_security_strategy=None
4458N/A
5403N/A# (Optional, mandatory if memcache_security_strategy is
5403N/A# defined) This string is used for key derivation. (string
4458N/A# value)
4458N/A#memcache_secret_key=<None>
4458N/A
5403N/A# (Optional) Number of seconds memcached server is considered
4458N/A# dead before it is tried again. (integer value)
4458N/A#memcache_pool_dead_retry=300
4458N/A
5403N/A# (Optional) Maximum total number of open connections to every
4458N/A# memcached server. (integer value)
4458N/A#memcache_pool_maxsize=10
4458N/A
5403N/A# (Optional) Socket timeout in seconds for communicating with
6853N/A# a memcached server. (integer value)
4458N/A#memcache_pool_socket_timeout=3
4458N/A
5403N/A# (Optional) Number of seconds a connection to memcached is
4458N/A# held unused in the pool before it is closed. (integer value)
4458N/A#memcache_pool_unused_timeout=60
4458N/A
5403N/A# (Optional) Number of seconds that an operation will wait to
6853N/A# get a memcached client connection from the pool. (integer
4458N/A# value)
4458N/A#memcache_pool_conn_get_timeout=10
4458N/A
6853N/A# (Optional) Use the advanced (eventlet safe) memcached client
4458N/A# pool. The advanced pool will only work under python 2.x.
4458N/A# (boolean value)
4458N/A#memcache_use_advanced_pool=false
4458N/A
5403N/A# (Optional) Indicate whether to set the X-Service-Catalog
4458N/A# header. If False, middleware will not ask for service
4458N/A# catalog on token validation and will not set the X-Service-
4458N/A# Catalog header. (boolean value)
4458N/A#include_service_catalog=true
4458N/A
4458N/A# Used to control the use and type of token binding. Can be
4458N/A# set to: "disabled" to not check token binding. "permissive"
4458N/A# (default) to validate binding information if the bind type
4458N/A# is of a form known to the server and ignore it if not.
4458N/A# "strict" like "permissive" but if the bind type is unknown
4458N/A# the token will be rejected. "required" any form of token
4458N/A# binding is needed to be allowed. Finally the name of a
4458N/A# binding method that must be present in tokens. (string
4458N/A# value)
4458N/A#enforce_token_bind=permissive
4458N/A
4458N/A# If true, the revocation list will be checked for cached
4458N/A# tokens. This requires that PKI tokens are configured on the
5403N/A# identity server. (boolean value)
4458N/A#check_revocations_for_cached=false
4458N/A
4458N/A# Hash algorithms to use for hashing PKI tokens. This may be a
4458N/A# single algorithm or multiple. The algorithms are those
4458N/A# supported by Python standard hashlib.new(). The hashes will
4458N/A# be tried in the order given, so put the preferred one first
4458N/A# for performance. The result of the first hash will be stored
4458N/A# in the cache. This will typically be set to multiple values
4458N/A# only while migrating from a less secure algorithm to a more
4458N/A# secure one. Once all the old tokens are expired this option
4458N/A# should be set to a single value for better performance.
4458N/A# (list value)
4458N/A#hash_algorithms=md5
4458N/A
6853N/A# Authentication type to load (type of value is unknown)
6853N/A# Deprecated group/name - [keystone_authtoken]/auth_plugin
6853N/A#auth_type=<None>
6853N/A
6853N/A# Config Section from which to load plugin specific options
6853N/A# (type of value is unknown)
6853N/A#auth_section=<None>
6853N/A
6853N/A# Complete admin Identity API endpoint. This should specify the unversioned
6853N/A# root endpoint e.g. https://localhost:35357/ (string value)
6853N/Aidentity_uri = http://127.0.0.1:35357/
5403N/A
5403N/A# Service username. (string value)
6853N/Aadmin_user = %SERVICE_USER%
5403N/A
5403N/A# Service user password. (string value)
6853N/Aadmin_password = %SERVICE_PASSWORD%
5403N/A
5403N/A# Service tenant name. (string value)
6853N/Aadmin_tenant_name = %SERVICE_TENANT_NAME%
5444N/A
4458N/A
4458N/A[matchmaker_redis]
4458N/A
4458N/A#
4458N/A# Options defined in oslo.messaging
4458N/A#
4458N/A
4458N/A# Host to locate redis. (string value)
4458N/A#host=127.0.0.1
4458N/A
6853N/A# Use this port to connect to redis host. (port value)
6853N/A# Possible values: 0-65535
4458N/A#port=6379
4458N/A
4458N/A# Password for Redis server (optional). (string value)
6853N/A#password=
6853N/A
6853N/A# List of Redis Sentinel hosts (fault tolerance mode) e.g.
6853N/A# [host:port, host1:port ... ] (list value)
6853N/A#sentinel_hosts=
6853N/A
6853N/A# Redis replica set name. (string value)
6853N/A#sentinel_group_name=oslo-messaging-zeromq
6853N/A
6853N/A# Time in ms to wait between connection attempts. (integer
6853N/A# value)
6853N/A#wait_timeout=500
6853N/A
6853N/A# Time in ms to wait before the transaction is killed.
6853N/A# (integer value)
6853N/A#check_timeout=20000
6853N/A
6853N/A# Timeout in ms on blocking socket operations (integer value)
6853N/A#socket_timeout=1000
4458N/A
4458N/A
4458N/A[neutron]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.dhcp.neutron
4458N/A#
4458N/A
4458N/A# URL for connecting to neutron. (string value)
4458N/A#url=http://$my_ip:9696
4458N/A
4458N/A# Timeout value for connecting to neutron in seconds. (integer
4458N/A# value)
4458N/A#url_timeout=30
4458N/A
5403N/A# Client retries in the case of a failed request. (integer
5403N/A# value)
5403N/A#retries=3
5403N/A
4458N/A# Default authentication strategy to use when connecting to
6853N/A# neutron. Running neutron in noauth mode (related to but not
6853N/A# affected by this setting) is insecure and should only be
6853N/A# used for testing. (string value)
6853N/A# Possible values: keystone, noauth
4458N/A#auth_strategy=keystone
4458N/A
6853N/A# UUID of the network to create Neutron ports on, when booting
6853N/A# to a ramdisk for cleaning using Neutron DHCP. (string value)
6853N/A#cleaning_network_uuid=<None>
6853N/A
6853N/A
6853N/A[oneview]
6853N/A
6853N/A#
6853N/A# Options defined in ironic.drivers.modules.oneview.common
6853N/A#
6853N/A
6853N/A# URL where OneView is available (string value)
6853N/A#manager_url=<None>
6853N/A
6853N/A# OneView username to be used (string value)
6853N/A#username=<None>
6853N/A
6853N/A# OneView password to be used (string value)
6853N/A#password=<None>
6853N/A
6853N/A# Option to allow insecure connection with OneView (boolean
5403N/A# value)
6853N/A#allow_insecure_connections=false
6853N/A
6853N/A# Path to CA certificate (string value)
6853N/A#tls_cacert_file=<None>
6853N/A
6853N/A# Max connection retries to check changes on OneView (integer
6853N/A# value)
6853N/A#max_polling_attempts=12
5403N/A
5403N/A
5403N/A[oslo_concurrency]
5403N/A
5403N/A#
5403N/A# Options defined in oslo.concurrency
5403N/A#
5403N/A
5403N/A# Enables or disables inter-process locks. (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/disable_process_locking
5403N/A#disable_process_locking=false
5403N/A
5403N/A# Directory to use for lock files. For security, the
5403N/A# specified directory should only be writable by the user
5403N/A# running the processes that need locking. Defaults to
5403N/A# environment variable OSLO_LOCK_PATH. If external locks are
5403N/A# used, a lock path must be set. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/lock_path
6853N/Alock_path=$state_path/lock
5403N/A
5403N/A
5403N/A[oslo_messaging_amqp]
5403N/A
5403N/A#
5403N/A# Options defined in oslo.messaging
5403N/A#
5403N/A
5403N/A# address prefix used when sending to a specific server
5403N/A# (string value)
6853N/A# Deprecated group/name - [amqp1]/server_request_prefix
5403N/A#server_request_prefix=exclusive
5403N/A
5403N/A# address prefix used when broadcasting to all servers (string
5403N/A# value)
6853N/A# Deprecated group/name - [amqp1]/broadcast_prefix
5403N/A#broadcast_prefix=broadcast
5403N/A
5403N/A# address prefix when sending to any server in group (string
5403N/A# value)
6853N/A# Deprecated group/name - [amqp1]/group_request_prefix
5403N/A#group_request_prefix=unicast
5403N/A
5403N/A# Name for the AMQP container (string value)
6853N/A# Deprecated group/name - [amqp1]/container_name
5403N/A#container_name=<None>
5403N/A
5403N/A# Timeout for inactive connections (in seconds) (integer
5403N/A# value)
6853N/A# Deprecated group/name - [amqp1]/idle_timeout
5403N/A#idle_timeout=0
5403N/A
5403N/A# Debug: dump AMQP frames to stdout (boolean value)
6853N/A# Deprecated group/name - [amqp1]/trace
5403N/A#trace=false
5403N/A
6853N/A# CA certificate PEM file to verify server certificate (string
6853N/A# value)
6853N/A# Deprecated group/name - [amqp1]/ssl_ca_file
5403N/A#ssl_ca_file=
5403N/A
5403N/A# Identifying certificate PEM file to present to clients
5403N/A# (string value)
6853N/A# Deprecated group/name - [amqp1]/ssl_cert_file
5403N/A#ssl_cert_file=
5403N/A
5403N/A# Private key PEM file used to sign cert_file certificate
5403N/A# (string value)
6853N/A# Deprecated group/name - [amqp1]/ssl_key_file
5403N/A#ssl_key_file=
5403N/A
5403N/A# Password for decrypting ssl_key_file (if encrypted) (string
5403N/A# value)
6853N/A# Deprecated group/name - [amqp1]/ssl_key_password
5403N/A#ssl_key_password=<None>
5403N/A
5403N/A# Accept clients using either SSL or plain TCP (boolean value)
6853N/A# Deprecated group/name - [amqp1]/allow_insecure_clients
5403N/A#allow_insecure_clients=false
5403N/A
6853N/A# Space separated list of acceptable SASL mechanisms (string
6853N/A# value)
6853N/A# Deprecated group/name - [amqp1]/sasl_mechanisms
6853N/A#sasl_mechanisms=
6853N/A
6853N/A# Path to directory that contains the SASL configuration
6853N/A# (string value)
6853N/A# Deprecated group/name - [amqp1]/sasl_config_dir
6853N/A#sasl_config_dir=
6853N/A
6853N/A# Name of configuration file (without .conf suffix) (string
6853N/A# value)
6853N/A# Deprecated group/name - [amqp1]/sasl_config_name
6853N/A#sasl_config_name=
6853N/A
6853N/A# User name for message broker authentication (string value)
6853N/A# Deprecated group/name - [amqp1]/username
6853N/A#username=
6853N/A
6853N/A# Password for message broker authentication (string value)
6853N/A# Deprecated group/name - [amqp1]/password
6853N/A#password=
6853N/A
6853N/A
6853N/A[oslo_messaging_notifications]
5403N/A
5403N/A#
5403N/A# Options defined in oslo.messaging
5403N/A#
5403N/A
6853N/A# The Drivers(s) to handle sending notifications. Possible
6853N/A# values are messaging, messagingv2, routing, log, test, noop
6853N/A# (multi valued)
6853N/A# Deprecated group/name - [DEFAULT]/notification_driver
6853N/A#driver=
6853N/A
6853N/A# A URL representing the messaging driver to use for
6853N/A# notifications. If not set, we fall back to the same
6853N/A# configuration used for RPC. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/notification_transport_url
6853N/A#transport_url=<None>
6853N/A
6853N/A# AMQP topic used for OpenStack notifications. (list value)
6853N/A# Deprecated group/name - [rpc_notifier2]/topics
6853N/A# Deprecated group/name - [DEFAULT]/notification_topics
6853N/A#topics=notifications
5403N/A
5403N/A
5403N/A[oslo_messaging_rabbit]
5403N/A
5403N/A#
5403N/A# Options defined in oslo.messaging
5403N/A#
5403N/A
5403N/A# Use durable queues in AMQP. (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/amqp_durable_queues
5403N/A# Deprecated group/name - [DEFAULT]/rabbit_durable_queues
5403N/A#amqp_durable_queues=false
5403N/A
5403N/A# Auto-delete queues in AMQP. (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/amqp_auto_delete
5403N/A#amqp_auto_delete=false
5403N/A
5403N/A# SSL version to use (valid only if SSL enabled). Valid values
5403N/A# are TLSv1 and SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may
5403N/A# be available on some distributions. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/kombu_ssl_version
5403N/A#kombu_ssl_version=
5403N/A
5403N/A# SSL key file (valid only if SSL enabled). (string value)
6853N/A# Deprecated group/name - [DEFAULT]/kombu_ssl_keyfile
5403N/A#kombu_ssl_keyfile=
5403N/A
5403N/A# SSL cert file (valid only if SSL enabled). (string value)
6853N/A# Deprecated group/name - [DEFAULT]/kombu_ssl_certfile
5403N/A#kombu_ssl_certfile=
5403N/A
5403N/A# SSL certification authority file (valid only if SSL
5403N/A# enabled). (string value)
6853N/A# Deprecated group/name - [DEFAULT]/kombu_ssl_ca_certs
5403N/A#kombu_ssl_ca_certs=
5403N/A
5403N/A# How long to wait before reconnecting in response to an AMQP
5403N/A# consumer cancel notification. (floating point value)
6853N/A# Deprecated group/name - [DEFAULT]/kombu_reconnect_delay
5403N/A#kombu_reconnect_delay=1.0
5403N/A
6853N/A# EXPERIMENTAL: Possible values are: gzip, bz2. If not set
6853N/A# compression will not be used. This option may notbe
6853N/A# available in future versions. (string value)
6853N/A#kombu_compression=<None>
6853N/A
6853N/A# How long to wait a missing client beforce abandoning to send
6853N/A# it its replies. This value should not be longer than
6853N/A# rpc_response_timeout. (integer value)
6853N/A# Deprecated group/name - [oslo_messaging_rabbit]/kombu_reconnect_timeout
6853N/A#kombu_missing_consumer_retry_timeout=60
6853N/A
6853N/A# Determines how the next RabbitMQ node is chosen in case the
6853N/A# one we are currently connected to becomes unavailable. Takes
6853N/A# effect only if more than one RabbitMQ node is provided in
6853N/A# config. (string value)
6853N/A# Possible values: round-robin, shuffle
6853N/A#kombu_failover_strategy=round-robin
6853N/A
5403N/A# The RabbitMQ broker address where a single node is used.
5403N/A# (string value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_host
5403N/A#rabbit_host=localhost
5403N/A
6853N/A# The RabbitMQ broker port where a single node is used. (port
6853N/A# value)
6853N/A# Possible values: 0-65535
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_port
5403N/A#rabbit_port=5672
5403N/A
5403N/A# RabbitMQ HA cluster host:port pairs. (list value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_hosts
5403N/A#rabbit_hosts=$rabbit_host:$rabbit_port
5403N/A
5403N/A# Connect over SSL for RabbitMQ. (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_use_ssl
5403N/A#rabbit_use_ssl=false
5403N/A
5403N/A# The RabbitMQ userid. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_userid
5403N/A#rabbit_userid=guest
5403N/A
5403N/A# The RabbitMQ password. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_password
5403N/A#rabbit_password=guest
5403N/A
5403N/A# The RabbitMQ login method. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_login_method
5403N/A#rabbit_login_method=AMQPLAIN
5403N/A
5403N/A# The RabbitMQ virtual host. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_virtual_host
5403N/A#rabbit_virtual_host=/
5403N/A
5403N/A# How frequently to retry connecting with RabbitMQ. (integer
5403N/A# value)
5403N/A#rabbit_retry_interval=1
5403N/A
5403N/A# How long to backoff for between retries when connecting to
5403N/A# RabbitMQ. (integer value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_retry_backoff
5403N/A#rabbit_retry_backoff=2
5403N/A
6853N/A# Maximum interval of RabbitMQ connection retries. Default is
6853N/A# 30 seconds. (integer value)
6853N/A#rabbit_interval_max=30
6853N/A
5403N/A# Maximum number of RabbitMQ connection retries. Default is 0
5403N/A# (infinite retry count). (integer value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_max_retries
5403N/A#rabbit_max_retries=0
5403N/A
6853N/A# Try to use HA queues in RabbitMQ (x-ha-policy: all). If you
6853N/A# change this option, you must wipe the RabbitMQ database. In
6853N/A# RabbitMQ 3.0, queue mirroring is no longer controlled by the
6853N/A# x-ha-policy argument when declaring a queue. If you just
6853N/A# want to make sure that all queues (except those with auto-
6853N/A# generated names) are mirrored across all nodes, run:
6853N/A# "rabbitmqctl set_policy HA '^(?!amq\.).*' '{"ha-mode":
6853N/A# "all"}' " (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/rabbit_ha_queues
5403N/A#rabbit_ha_queues=false
5403N/A
6853N/A# Positive integer representing duration in seconds for queue
6853N/A# TTL (x-expires). Queues which are unused for the duration of
6853N/A# the TTL are automatically deleted. The parameter affects
6853N/A# only reply and fanout queues. (integer value)
6853N/A# Minimum value: 1
6853N/A#rabbit_transient_queues_ttl=1800
6853N/A
6853N/A# Specifies the number of messages to prefetch. Setting to
6853N/A# zero allows unlimited messages. (integer value)
6853N/A#rabbit_qos_prefetch_count=0
6853N/A
5444N/A# Number of seconds after which the Rabbit broker is
6853N/A# considered down if heartbeat's keep-alive fails (0 disable
6853N/A# the heartbeat). EXPERIMENTAL (integer value)
6853N/A#heartbeat_timeout_threshold=60
5444N/A
5444N/A# How often times during the heartbeat_timeout_threshold we
5444N/A# check the heartbeat. (integer value)
5444N/A#heartbeat_rate=2
5444N/A
5403N/A# Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake
5403N/A# (boolean value)
6853N/A# Deprecated group/name - [DEFAULT]/fake_rabbit
5403N/A#fake_rabbit=false
5403N/A
6853N/A# Maximum number of channels to allow (integer value)
6853N/A#channel_max=<None>
6853N/A
6853N/A# The maximum byte size for an AMQP frame (integer value)
6853N/A#frame_max=<None>
6853N/A
6853N/A# How often to send heartbeats for consumer's connections
6853N/A# (integer value)
6853N/A#heartbeat_interval=1
6853N/A
6853N/A# Enable SSL (boolean value)
6853N/A#ssl=<None>
6853N/A
6853N/A# Arguments passed to ssl.wrap_socket (dict value)
6853N/A#ssl_options=<None>
6853N/A
6853N/A# Set socket timeout in seconds for connection's socket
6853N/A# (floating point value)
6853N/A#socket_timeout=0.25
6853N/A
6853N/A# Set TCP_USER_TIMEOUT in seconds for connection's socket
6853N/A# (floating point value)
6853N/A#tcp_user_timeout=0.25
6853N/A
6853N/A# Set delay for reconnection to some host which has connection
6853N/A# error (floating point value)
6853N/A#host_connection_reconnect_delay=0.25
6853N/A
6853N/A# Maximum number of connections to keep queued. (integer
6853N/A# value)
6853N/A#pool_max_size=10
6853N/A
6853N/A# Maximum number of connections to create above
6853N/A# `pool_max_size`. (integer value)
6853N/A#pool_max_overflow=0
6853N/A
6853N/A# Default number of seconds to wait for a connections to
6853N/A# available (integer value)
6853N/A#pool_timeout=30
6853N/A
6853N/A# Lifetime of a connection (since creation) in seconds or None
6853N/A# for no recycling. Expired connections are closed on acquire.
6853N/A# (integer value)
6853N/A#pool_recycle=600
6853N/A
6853N/A# Threshold at which inactive (since release) connections are
6853N/A# considered stale in seconds or None for no staleness. Stale
6853N/A# connections are closed on acquire. (integer value)
6853N/A#pool_stale=60
6853N/A
6853N/A# Persist notification messages. (boolean value)
6853N/A#notification_persistence=false
6853N/A
6853N/A# Exchange name for for sending notifications (string value)
6853N/A#default_notification_exchange=${control_exchange}_notification
6853N/A
6853N/A# Max number of not acknowledged message which RabbitMQ can
6853N/A# send to notification listener. (integer value)
6853N/A#notification_listener_prefetch_count=100
6853N/A
6853N/A# Reconnecting retry count in case of connectivity problem
6853N/A# during sending notification, -1 means infinite retry.
6853N/A# (integer value)
6853N/A#default_notification_retry_attempts=-1
6853N/A
6853N/A# Reconnecting retry delay in case of connectivity problem
6853N/A# during sending notification message (floating point value)
6853N/A#notification_retry_delay=0.25
6853N/A
6853N/A# Time to live for rpc queues without consumers in seconds.
6853N/A# (integer value)
6853N/A#rpc_queue_expiration=60
6853N/A
6853N/A# Exchange name for sending RPC messages (string value)
6853N/A#default_rpc_exchange=${control_exchange}_rpc
6853N/A
6853N/A# Exchange name for receiving RPC replies (string value)
6853N/A#rpc_reply_exchange=${control_exchange}_rpc_reply
6853N/A
6853N/A# Max number of not acknowledged message which RabbitMQ can
6853N/A# send to rpc listener. (integer value)
6853N/A#rpc_listener_prefetch_count=100
6853N/A
6853N/A# Max number of not acknowledged message which RabbitMQ can
6853N/A# send to rpc reply listener. (integer value)
6853N/A#rpc_reply_listener_prefetch_count=100
6853N/A
6853N/A# Reconnecting retry count in case of connectivity problem
6853N/A# during sending reply. -1 means infinite retry during
6853N/A# rpc_timeout (integer value)
6853N/A#rpc_reply_retry_attempts=-1
6853N/A
6853N/A# Reconnecting retry delay in case of connectivity problem
6853N/A# during sending reply. (floating point value)
6853N/A#rpc_reply_retry_delay=0.25
6853N/A
6853N/A# Reconnecting retry count in case of connectivity problem
6853N/A# during sending RPC message, -1 means infinite retry. If
6853N/A# actual retry attempts in not 0 the rpc request could be
6853N/A# processed more then one time (integer value)
6853N/A#default_rpc_retry_attempts=-1
6853N/A
6853N/A# Reconnecting retry delay in case of connectivity problem
6853N/A# during sending RPC message (floating point value)
6853N/A#rpc_retry_delay=0.25
6853N/A
6853N/A
6853N/A[oslo_middleware]
6853N/A
6853N/A#
6853N/A# Options defined in oslo.middleware
6853N/A#
6853N/A
6853N/A# The maximum body size for each request, in bytes. (integer
6853N/A# value)
6853N/A# Deprecated group/name - [DEFAULT]/osapi_max_request_body_size
6853N/A# Deprecated group/name - [DEFAULT]/max_request_body_size
6853N/A#max_request_body_size=114688
6853N/A
6853N/A
6853N/A#
6853N/A# Options defined in oslo.middleware
6853N/A#
6853N/A
6853N/A# The HTTP Header that will be used to determine what the
6853N/A# original request protocol scheme was, even if it was hidden
6853N/A# by an SSL termination proxy. (string value)
6853N/A# This option is deprecated and planned for removal in a future release.
6853N/A#secure_proxy_ssl_header=X-Forwarded-Proto
6853N/A
5403N/A
5403N/A[oslo_policy]
5403N/A
5403N/A#
5403N/A# Options defined in oslo.policy
5403N/A#
5403N/A
5403N/A# The JSON file that defines policies. (string value)
6853N/A# Deprecated group/name - [DEFAULT]/policy_file
5403N/A#policy_file=policy.json
5403N/A
5403N/A# Default rule. Enforced when a requested rule is not found.
5403N/A# (string value)
6853N/A# Deprecated group/name - [DEFAULT]/policy_default_rule
5403N/A#policy_default_rule=default
5403N/A
5403N/A# Directories where policy configuration files are stored.
5403N/A# They can be relative to any directory in the search path
5403N/A# defined by the config_dir option, or absolute paths. The
5403N/A# file defined by policy_file must exist for these directories
5403N/A# to be searched. Missing or empty directories are ignored.
5403N/A# (multi valued)
6853N/A# Deprecated group/name - [DEFAULT]/policy_dirs
5403N/A#policy_dirs=policy.d
5403N/A
4458N/A
6853N/A[oslo_versionedobjects]
6853N/A
6853N/A#
6853N/A# Options defined in oslo.versionedobjects
6853N/A#
6853N/A
6853N/A# Make exception message format errors fatal (boolean value)
6853N/A#fatal_exception_format_errors=false
6853N/A
6853N/A
4458N/A[pxe]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.iscsi_deploy
4458N/A#
4458N/A
4458N/A# Additional append parameters for baremetal PXE boot. (string
4458N/A# value)
4458N/A#pxe_append_params=nofb nomodeset vga=normal
4458N/A
4458N/A# Default file system format for ephemeral partition, if one
4458N/A# is created. (string value)
4458N/A#default_ephemeral_format=ext4
4458N/A
6853N/A# On the ironic-conductor node, directory where images are
6853N/A# stored on disk. (string value)
4458N/A#images_path=/var/lib/ironic/images/
4458N/A
6853N/A# On the ironic-conductor node, directory where master
6853N/A# instance images are stored on disk. Setting to <None>
6853N/A# disables image caching. (string value)
4458N/A#instance_master_path=/var/lib/ironic/master_images
4458N/A
4458N/A# Maximum size (in MiB) of cache for master images, including
4458N/A# those in use. (integer value)
4458N/A#image_cache_size=20480
4458N/A
4458N/A# Maximum TTL (in minutes) for old master images in cache.
4458N/A# (integer value)
4458N/A#image_cache_ttl=10080
4458N/A
4458N/A# The disk devices to scan while doing the deploy. (string
4458N/A# value)
4458N/A#disk_devices=cciss/c0d0,sda,hda,vda
4458N/A
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.pxe
4458N/A#
4458N/A
6853N/A# On ironic-conductor node, template file for PXE
6853N/A# configuration. (string value)
4458N/A#pxe_config_template=$pybasedir/drivers/modules/pxe_config.template
4458N/A
6853N/A# On ironic-conductor node, template file for PXE
6853N/A# configuration for UEFI boot loader. (string value)
4458N/A#uefi_pxe_config_template=$pybasedir/drivers/modules/elilo_efi_pxe_config.template
4458N/A
6853N/A# IP address of ironic-conductor node's TFTP server. (string
4458N/A# value)
4458N/A#tftp_server=$my_ip
4458N/A
6853N/A# ironic-conductor node's TFTP root path. The ironic-conductor
6853N/A# must have read/write access to this path. (string value)
4458N/A#tftp_root=/tftpboot
4458N/A
6853N/A# On ironic-conductor node, directory where master TFTP images
6853N/A# are stored on disk. Setting to <None> disables image
6853N/A# caching. (string value)
4458N/A#tftp_master_path=/tftpboot/master_images
4458N/A
4458N/A# Bootfile DHCP parameter. (string value)
4458N/A#pxe_bootfile_name=pxelinux.0
4458N/A
4458N/A# Bootfile DHCP parameter for UEFI boot mode. (string value)
4458N/A#uefi_pxe_bootfile_name=elilo.efi
4458N/A
4458N/A# Enable iPXE boot. (boolean value)
4458N/A#ipxe_enabled=false
4458N/A
6853N/A# On ironic-conductor node, the path to the main iPXE script
6853N/A# file. (string value)
4458N/A#ipxe_boot_script=$pybasedir/drivers/modules/boot.ipxe
4458N/A
6853N/A# Timeout value (in seconds) for downloading an image via
6853N/A# iPXE. Defaults to 0 (no timeout) (integer value)
6853N/A#ipxe_timeout=0
6853N/A
6853N/A# The IP version that will be used for PXE booting. Defaults
6853N/A# to 4. EXPERIMENTAL (string value)
6853N/A# Possible values: 4, 6
6853N/A#ip_version=4
6853N/A
4458N/A
4458N/A[seamicro]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.seamicro
4458N/A#
4458N/A
4458N/A# Maximum retries for SeaMicro operations (integer value)
4458N/A#max_retry=3
4458N/A
4458N/A# Seconds to wait for power action to be completed (integer
4458N/A# value)
4458N/A#action_timeout=10
4458N/A
4458N/A
4458N/A[snmp]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.snmp
4458N/A#
4458N/A
4458N/A# Seconds to wait for power action to be completed (integer
4458N/A# value)
4458N/A#power_timeout=10
4458N/A
6853N/A# Time (in seconds) to sleep between when rebooting (powering
6853N/A# off and on again) (integer value)
6853N/A# Minimum value: 0
6853N/A#reboot_delay=0
6853N/A
4458N/A
4458N/A[solaris_ipmi]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.solaris_ipmitool
4458N/A#
4458N/A
4458N/A# Default path to image cache. (string value)
4458N/A#imagecache_dirname=/var/lib/ironic/images
4458N/A
4458N/A# Timeout to wait when attempting to lock refcount file.
4458N/A# (string value)
4458N/A#imagecache_lock_timeout=60
4458N/A
4458N/A
4458N/A[ssh]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.drivers.modules.ssh
4458N/A#
4458N/A
6853N/A# libvirt URI. (string value)
4458N/A#libvirt_uri=qemu:///system
4458N/A
6853N/A# Number of attempts to try to get VM name used by the host
6853N/A# that corresponds to a node's MAC address. (integer value)
6853N/A#get_vm_name_attempts=3
6853N/A
6853N/A# Number of seconds to wait between attempts to get VM name
6853N/A# used by the host that corresponds to a node's MAC address.
6853N/A# (integer value)
6853N/A#get_vm_name_retry_interval=3
6853N/A
6853N/A
6853N/A[ssl]
6853N/A
6853N/A#
6853N/A# Options defined in oslo.service.sslutils
6853N/A#
6853N/A
6853N/A# CA certificate file to use to verify connecting clients.
6853N/A# (string value)
6853N/A# Deprecated group/name - [DEFAULT]/ssl_ca_file
6853N/A#ca_file=<None>
6853N/A
6853N/A# Certificate file to use when starting the server securely.
6853N/A# (string value)
6853N/A# Deprecated group/name - [DEFAULT]/ssl_cert_file
6853N/A#cert_file=<None>
6853N/A
6853N/A# Private key file to use when starting the server securely.
6853N/A# (string value)
6853N/A# Deprecated group/name - [DEFAULT]/ssl_key_file
6853N/A#key_file=<None>
6853N/A
6853N/A# SSL version to use (valid only if SSL enabled). Valid values
6853N/A# are TLSv1 and SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may
6853N/A# be available on some distributions. (string value)
6853N/A#version=<None>
6853N/A
6853N/A# Sets the list of available ciphers. value should be a string
6853N/A# in the OpenSSL cipher list format. (string value)
6853N/A#ciphers=<None>
6853N/A
4458N/A
4458N/A[swift]
4458N/A
4458N/A#
4458N/A# Options defined in ironic.common.swift
4458N/A#
4458N/A
4458N/A# Maximum number of times to retry a Swift request, before
4458N/A# failing. (integer value)
4458N/A#swift_max_retries=2
4458N/A
4458N/A
5403N/A[virtualbox]
5403N/A
5403N/A#
5403N/A# Options defined in ironic.drivers.modules.virtualbox
5403N/A#
5403N/A
6853N/A# Port on which VirtualBox web service is listening. (port
5403N/A# value)
6853N/A# Possible values: 0-65535
5403N/A#port=18083
5403N/A
5403N/A