Sample sahara.conf file

This is an automatically generated sample of the sahara.conf file.

   1[DEFAULT]
   2
   3#
   4# From oslo.log
   5#
   6
   7# If set to true, the logging level will be set to DEBUG instead of the default
   8# INFO level. (boolean value)
   9# Note: This option can be changed without restarting.
  10#debug = false
  11
  12# The name of a logging configuration file. This file is appended to any
  13# existing logging configuration files. For details about logging configuration
  14# files, see the Python logging module documentation. Note that when logging
  15# configuration files are used then all logging configuration is set in the
  16# configuration file and other logging configuration options are ignored (for
  17# example, log-date-format). (string value)
  18# Note: This option can be changed without restarting.
  19# Deprecated group/name - [DEFAULT]/log_config
  20#log_config_append = <None>
  21
  22# Defines the format string for %%(asctime)s in log records. Default:
  23# %(default)s . This option is ignored if log_config_append is set. (string
  24# value)
  25#log_date_format = %Y-%m-%d %H:%M:%S
  26
  27# (Optional) Name of log file to send logging output to. If no default is set,
  28# logging will go to stderr as defined by use_stderr. This option is ignored if
  29# log_config_append is set. (string value)
  30# Deprecated group/name - [DEFAULT]/logfile
  31#log_file = <None>
  32
  33# (Optional) The base directory used for relative log_file  paths. This option
  34# is ignored if log_config_append is set. (string value)
  35# Deprecated group/name - [DEFAULT]/logdir
  36#log_dir = <None>
  37
  38# Uses logging handler designed to watch file system. When log file is moved or
  39# removed this handler will open a new log file with specified path
  40# instantaneously. It makes sense only if log_file option is specified and
  41# Linux platform is used. This option is ignored if log_config_append is set.
  42# (boolean value)
  43#watch_log_file = false
  44
  45# Use syslog for logging. Existing syslog format is DEPRECATED and will be
  46# changed later to honor RFC5424. This option is ignored if log_config_append
  47# is set. (boolean value)
  48#use_syslog = false
  49
  50# Enable journald for logging. If running in a systemd environment you may wish
  51# to enable journal support. Doing so will use the journal native protocol
  52# which includes structured metadata in addition to log messages.This option is
  53# ignored if log_config_append is set. (boolean value)
  54#use_journal = false
  55
  56# Syslog facility to receive log lines. This option is ignored if
  57# log_config_append is set. (string value)
  58#syslog_log_facility = LOG_USER
  59
  60# Use JSON formatting for logging. This option is ignored if log_config_append
  61# is set. (boolean value)
  62#use_json = false
  63
  64# Log output to standard error. This option is ignored if log_config_append is
  65# set. (boolean value)
  66#use_stderr = false
  67
  68# Log output to Windows Event Log. (boolean value)
  69#use_eventlog = false
  70
  71# The amount of time before the log files are rotated. This option is ignored
  72# unless log_rotation_type is set to "interval". (integer value)
  73#log_rotate_interval = 1
  74
  75# Rotation interval type. The time of the last file change (or the time when
  76# the service was started) is used when scheduling the next rotation. (string
  77# value)
  78# Possible values:
  79# Seconds - <No description provided>
  80# Minutes - <No description provided>
  81# Hours - <No description provided>
  82# Days - <No description provided>
  83# Weekday - <No description provided>
  84# Midnight - <No description provided>
  85#log_rotate_interval_type = days
  86
  87# Maximum number of rotated log files. (integer value)
  88#max_logfile_count = 30
  89
  90# Log file maximum size in MB. This option is ignored if "log_rotation_type" is
  91# not set to "size". (integer value)
  92#max_logfile_size_mb = 200
  93
  94# Log rotation type. (string value)
  95# Possible values:
  96# interval - Rotate logs at predefined time intervals.
  97# size - Rotate logs once they reach a predefined size.
  98# none - Do not rotate log files.
  99#log_rotation_type = none
 100
 101# Format string to use for log messages with context. Used by
 102# oslo_log.formatters.ContextFormatter (string value)
 103#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
 104
 105# Format string to use for log messages when context is undefined. Used by
 106# oslo_log.formatters.ContextFormatter (string value)
 107#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
 108
 109# Additional data to append to log message when logging level for the message
 110# is DEBUG. Used by oslo_log.formatters.ContextFormatter (string value)
 111#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
 112
 113# Prefix each line of exception output with this format. Used by
 114# oslo_log.formatters.ContextFormatter (string value)
 115#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
 116
 117# Defines the format string for %(user_identity)s that is used in
 118# logging_context_format_string. Used by oslo_log.formatters.ContextFormatter
 119# (string value)
 120#logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
 121
 122# List of package logging levels in logger=LEVEL pairs. This option is ignored
 123# if log_config_append is set. (list value)
 124#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=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,oslo_policy=INFO,dogpile.core.dogpile=INFO,stevedore=INFO,eventlet.wsgi.server=WARN,paramiko=WARN,requests=WARN,neutronclient=INFO
 125
 126# Enables or disables publication of error events. (boolean value)
 127#publish_errors = false
 128
 129# The format for an instance that is passed with the log message. (string
 130# value)
 131#instance_format = "[instance: %(uuid)s] "
 132
 133# The format for an instance UUID that is passed with the log message. (string
 134# value)
 135#instance_uuid_format = "[instance: %(uuid)s] "
 136
 137# Interval, number of seconds, of log rate limiting. (integer value)
 138#rate_limit_interval = 0
 139
 140# Maximum number of logged messages per rate_limit_interval. (integer value)
 141#rate_limit_burst = 0
 142
 143# Log level name used by rate limiting: CRITICAL, ERROR, INFO, WARNING, DEBUG
 144# or empty string. Logs with level greater or equal to rate_limit_except_level
 145# are not filtered. An empty string means that all levels are filtered. (string
 146# value)
 147#rate_limit_except_level = CRITICAL
 148
 149# Enables or disables fatal status of deprecations. (boolean value)
 150#fatal_deprecations = false
 151
 152#
 153# From oslo.messaging
 154#
 155
 156# Size of RPC connection pool. (integer value)
 157# Minimum value: 1
 158#rpc_conn_pool_size = 30
 159
 160# The pool size limit for connections expiration policy (integer value)
 161#conn_pool_min_size = 2
 162
 163# The time-to-live in sec of idle connections in the pool (integer value)
 164#conn_pool_ttl = 1200
 165
 166# Size of executor thread pool when executor is threading or eventlet. (integer
 167# value)
 168# Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
 169#executor_thread_pool_size = 64
 170
 171# Seconds to wait for a response from a call. (integer value)
 172#rpc_response_timeout = 60
 173
 174# The network address and optional user credentials for connecting to the
 175# messaging backend, in URL format. The expected format is:
 176#
 177# driver://[user:pass@]host:port[,[userN:passN@]hostN:portN]/virtual_host?query
 178#
 179# Example: rabbit://rabbitmq:password@127.0.0.1:5672//
 180#
 181# For full details on the fields in the URL see the documentation of
 182# oslo_messaging.TransportURL at
 183# https://docs.openstack.org/oslo.messaging/latest/reference/transport.html
 184# (string value)
 185#transport_url = rabbit://
 186
 187# The default exchange under which topics are scoped. May be overridden by an
 188# exchange name specified in the transport_url option. (string value)
 189#control_exchange = openstack
 190
 191# Add an endpoint to answer to ping calls. Endpoint is named
 192# oslo_rpc_server_ping (boolean value)
 193#rpc_ping_enabled = false
 194
 195#
 196# From oslo.service.periodic_task
 197#
 198
 199# Some periodic tasks can be run in a separate process. Should we run them
 200# here? (boolean value)
 201#run_external_periodic_tasks = true
 202
 203#
 204# From oslo.service.wsgi
 205#
 206
 207# File name for the paste.deploy config for api service (string value)
 208#api_paste_config = api-paste.ini
 209
 210# A python format string that is used as the template to generate log lines.
 211# The following values can beformatted into it: client_ip, date_time,
 212# request_line, status_code, body_length, wall_seconds. (string value)
 213#wsgi_log_format = %(client_ip)s "%(request_line)s" status: %(status_code)s  len: %(body_length)s time: %(wall_seconds).7f
 214
 215# Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not
 216# supported on OS X. (integer value)
 217#tcp_keepidle = 600
 218
 219# Size of the pool of greenthreads used by wsgi (integer value)
 220#wsgi_default_pool_size = 100
 221
 222# Maximum line size of message headers to be accepted. max_header_line may need
 223# to be increased when using large tokens (typically those generated when
 224# keystone is configured to use PKI tokens with big service catalogs). (integer
 225# value)
 226#max_header_line = 16384
 227
 228# If False, closes the client socket connection explicitly. (boolean value)
 229#wsgi_keep_alive = true
 230
 231# Timeout for client connections' socket operations. If an incoming connection
 232# is idle for this number of seconds it will be closed. A value of '0' means
 233# wait forever. (integer value)
 234#client_socket_timeout = 900
 235
 236# True if the server should send exception tracebacks to the clients on 500
 237# errors. If False, the server will respond with empty bodies. (boolean value)
 238#wsgi_server_debug = false
 239
 240#
 241# From sahara.config
 242#
 243
 244# Hostname or IP address that will be used to listen on. (host address value)
 245#host = 0.0.0.0
 246
 247# Port that will be used to listen on. (port value)
 248# Minimum value: 0
 249# Maximum value: 65535
 250#port = 8386
 251
 252# Log request/response exchange details: environ, headers and bodies. (boolean
 253# value)
 254#log_exchange = false
 255
 256# Maximum length of job binary data in kilobytes that may be stored or
 257# retrieved in a single operation. (integer value)
 258#job_binary_max_KB = 5120
 259
 260# Timeout for canceling job execution (in seconds). Sahara will try to cancel
 261# job execution during this time. (integer value)
 262#job_canceling_timeout = 300
 263
 264# Use Sahara internal db to store job binaries. (boolean value)
 265#edp_internal_db_enabled = true
 266
 267# If set to True, Sahara will use floating IPs to communicate with instances.
 268# To make sure that all instances have floating IPs assigned, make sure that
 269# all Node Groups have "floating_ip_pool" parameter defined. (boolean value)
 270#use_floating_ips = true
 271
 272# The suffix of the node's FQDN. (string value)
 273#node_domain = novalocal
 274
 275# Use network namespaces for communication. (boolean value)
 276#use_namespaces = false
 277
 278# Use rootwrap facility to allow non-root users to run the sahara services and
 279# access private network IPs (only valid to use in conjunction with
 280# use_namespaces=True) (boolean value)
 281#use_rootwrap = false
 282
 283# Rootwrap command to leverage.  Use in conjunction with use_rootwrap=True
 284# (string value)
 285#rootwrap_command = sudo sahara-rootwrap /etc/sahara/rootwrap.conf
 286
 287# Use Designate for internal and external hostnames resolution (boolean value)
 288#use_designate = false
 289
 290# IP addresses of Designate nameservers. This is required if 'use_designate' is
 291# True (list value)
 292#nameservers =
 293
 294# Driver to use for database access. (string value)
 295#db_driver = sahara.db
 296
 297# IP address of Keystone endpoint, accessible by tenant machines. If not set,
 298# the results of the DNS lookup performed where Sahara services are running
 299# will be used. (IP address value)
 300#identity_ip_accessible = <None>
 301
 302# IP address of Swift endpoint, accessible by tenant machines. If not set, the
 303# results of the DNS lookup performed where Sahara services are running will be
 304# used. (IP address value)
 305#object_store_ip_accessible = <None>
 306
 307# List of plugins to be loaded. Sahara preserves the order of the list when
 308# returning it. (list value)
 309#plugins = vanilla,spark,cdh,ambari,storm,mapr
 310
 311# Enables data locality for hadoop cluster. Also enables data locality for
 312# Swift used by hadoop. If enabled, 'compute_topology' and 'swift_topology'
 313# configuration parameters should point to OpenStack and Swift topology
 314# correspondingly. (boolean value)
 315#enable_data_locality = false
 316
 317# Enables four-level topology for data locality. Works only if corresponding
 318# plugin supports such mode. (boolean value)
 319#enable_hypervisor_awareness = true
 320
 321# File with nova compute topology. It should contain mapping between nova
 322# computes and racks. (string value)
 323#compute_topology_file = etc/sahara/compute.topology
 324
 325# File with Swift topology.It should contain mapping between Swift nodes and
 326# racks. (string value)
 327#swift_topology_file = etc/sahara/swift.topology
 328
 329# Enables Sahara to use Keystone API v3. If that flag is disabled, per-job
 330# clusters will not be terminated automatically. (boolean value)
 331#use_identity_api_v3 = true
 332
 333# Maximum number of remote operations that will be running at the same time.
 334# Note that each remote operation requires its own process to run. (integer
 335# value)
 336#global_remote_threshold = 100
 337
 338# The same as global_remote_threshold, but for a single cluster. (integer
 339# value)
 340#cluster_remote_threshold = 70
 341
 342# Proxy command used to connect to instances. If set, this command should open
 343# a netcat socket, that Sahara will use for SSH and HTTP connections. Use
 344# {host} and {port} to describe the destination. Other available keywords:
 345# {tenant_id}, {network_id}, {router_id}. (string value)
 346#proxy_command =
 347
 348# Force proxy_command usage to be consuming internal IP always, instead of
 349# management IP. Ignored if proxy_command is not set. (boolean value)
 350#proxy_command_use_internal_ip = false
 351
 352# Region name used to get services endpoints. (string value)
 353#os_region_name = <None>
 354
 355# A method for Sahara to execute commands on VMs. (string value)
 356#remote = ssh
 357
 358# Number of workers for Sahara API service (0 means all-in-one-thread
 359# configuration). (integer value)
 360#api_workers = 1
 361
 362# Postfix for storing jobs in hdfs. Will be added to '/user/<hdfs user>/' path.
 363# (string value)
 364#job_workflow_postfix =
 365
 366# Enable periodic tasks. (boolean value)
 367#periodic_enable = true
 368
 369# Range in seconds to randomly delay when starting the periodic task scheduler
 370# to reduce stampeding. (Disable by setting to 0). (integer value)
 371#periodic_fuzzy_delay = 60
 372
 373# Max interval size between periodic tasks execution in seconds. (integer
 374# value)
 375#periodic_interval_max = 60
 376
 377# Minimal "lifetime" in seconds for a transient cluster. Cluster is guaranteed
 378# to be "alive" within this time period. (integer value)
 379#min_transient_cluster_active_time = 30
 380
 381# Maximal time (in hours) for clusters allowed to be in states other than
 382# "Active", "Deleting" or "Error". If a cluster is not in "Active", "Deleting"
 383# or "Error" state and last update of it was longer than
 384# "cleanup_time_for_incomplete_clusters" hours ago then it will be deleted
 385# automatically. (0 value means that automatic clean up is disabled). (integer
 386# value)
 387#cleanup_time_for_incomplete_clusters = 0
 388
 389# The backend URL to use for distributed periodic tasks coordination. (string
 390# value)
 391#periodic_coordinator_backend_url = <None>
 392
 393# Number of threads to run periodic tasks. (integer value)
 394#periodic_workers_number = 1
 395
 396# Interval size between heartbeat execution in seconds. Heartbeats are executed
 397# to make sure that connection to the coordination server is active. (integer
 398# value)
 399#coordinator_heartbeat_interval = 1
 400
 401# Number of points that belongs to each member on a hash ring. The larger
 402# number leads to a better distribution. (integer value)
 403#hash_ring_replicas_count = 40
 404
 405# Default ntp server for time sync (string value)
 406#default_ntp_server = pool.ntp.org
 407
 408# Enables Sahara to use a domain for creating temporary proxy users to access
 409# Swift. If this is enabled a domain must be created for Sahara to use.
 410# (boolean value)
 411#use_domain_for_proxy_users = false
 412
 413# The domain Sahara will use to create new proxy users for Swift object access.
 414# (string value)
 415#proxy_user_domain_name = <None>
 416
 417# A list of the role names that the proxy user should assume through trust for
 418# Swift object access. (list value)
 419#proxy_user_role_names = member
 420
 421# Disables event log feature. (boolean value)
 422#disable_event_log = false
 423
 424# Number of times to retry the request to client before failing (integer value)
 425#retries_number = 5
 426
 427# Time between the retries to client (in seconds). (integer value)
 428#retry_after = 10
 429
 430# List of tags to be used during operating with stack. (list value)
 431#heat_stack_tags = data-processing-cluster
 432
 433# Enable wait condition feature to reduce polling during cluster creation
 434# (boolean value)
 435#heat_enable_wait_condition = true
 436
 437# Overrides timeout for common ssh operations, in seconds (integer value)
 438# Minimum value: 1
 439#ssh_timeout_common = 300
 440
 441# Overrides timeout for interactive ssh operations, in seconds (integer value)
 442# Minimum value: 1
 443#ssh_timeout_interactive = 1800
 444
 445# Overrides timeout for ssh operations with files, in seconds (integer value)
 446# Minimum value: 1
 447#ssh_timeout_files = 600
 448
 449# Enable the usage of the OpenStack Key Management service provided by
 450# barbican. (boolean value)
 451#use_barbican_key_manager = false
 452
 453# List of data sources types to be loaded. Sahara preserves the order of the
 454# list when returning it. (list value)
 455#data_source_types = swift,hdfs,maprfs,manila,s3
 456
 457# List of job binary types to be loaded. Sahara preserves the order of the list
 458# when returning it. (list value)
 459#job_binary_types = swift,manila,internal-db,s3
 460
 461
 462[castellan]
 463
 464#
 465# From sahara.config
 466#
 467
 468# The endpoint to use for connecting to the barbican api controller. By
 469# default, castellan will use the URL from the service catalog. (string value)
 470#barbican_api_endpoint = <None>
 471
 472# Version of the barbican API, for example: "v1" (string value)
 473#barbican_api_version = v1
 474
 475
 476[cinder]
 477
 478#
 479# From sahara.config
 480#
 481
 482# Version of the Cinder API to use. (integer value)
 483# Deprecated group/name - [cinder]/cinder_api_version
 484#api_version = 3
 485
 486# Allow to perform insecure SSL requests to cinder. (boolean value)
 487#api_insecure = false
 488
 489# Location of ca certificates file to use for cinder client requests. (string
 490# value)
 491#ca_file = <None>
 492
 493# Endpoint type for cinder client requests (string value)
 494#endpoint_type = internalURL
 495
 496
 497[conductor]
 498
 499#
 500# From sahara.config
 501#
 502
 503# Perform sahara-conductor operations locally. (boolean value)
 504#use_local = true
 505
 506
 507[cors]
 508
 509#
 510# From oslo.middleware.cors
 511#
 512
 513# Indicate whether this resource may be shared with the domain received in the
 514# requests "origin" header. Format: "<protocol>://<host>[:<port>]", no trailing
 515# slash. Example: https://horizon.example.com (list value)
 516#allowed_origin = <None>
 517
 518# Indicate that the actual request can include user credentials (boolean value)
 519#allow_credentials = true
 520
 521# Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
 522# Headers. (list value)
 523#expose_headers = X-Auth-Token,X-Subject-Token,X-Service-Token,X-OpenStack-Request-ID
 524
 525# Maximum cache age of CORS preflight requests. (integer value)
 526#max_age = 3600
 527
 528# Indicate which methods can be used during the actual request. (list value)
 529#allow_methods = GET,PUT,POST,DELETE,PATCH
 530
 531# Indicate which header field names may be used during the actual request.
 532# (list value)
 533#allow_headers = X-Auth-Token,X-Identity-Status,X-Roles,X-Service-Catalog,X-User-Id,X-Tenant-Id,X-OpenStack-Request-ID
 534
 535
 536[database]
 537
 538#
 539# From oslo.db
 540#
 541
 542# If True, SQLite uses synchronous mode. (boolean value)
 543#sqlite_synchronous = true
 544
 545# The back end to use for the database. (string value)
 546# Deprecated group/name - [DEFAULT]/db_backend
 547#backend = sqlalchemy
 548
 549# The SQLAlchemy connection string to use to connect to the database. (string
 550# value)
 551# Deprecated group/name - [DEFAULT]/sql_connection
 552# Deprecated group/name - [DATABASE]/sql_connection
 553# Deprecated group/name - [sql]/connection
 554#connection = <None>
 555
 556# The SQLAlchemy connection string to use to connect to the slave database.
 557# (string value)
 558#slave_connection = <None>
 559
 560# The SQL mode to be used for MySQL sessions. This option, including the
 561# default, overrides any server-set SQL mode. To use whatever SQL mode is set
 562# by the server configuration, set this to no value. Example: mysql_sql_mode=
 563# (string value)
 564#mysql_sql_mode = TRADITIONAL
 565
 566# If True, transparently enables support for handling MySQL Cluster (NDB).
 567# (boolean value)
 568#mysql_enable_ndb = false
 569
 570# Connections which have been present in the connection pool longer than this
 571# number of seconds will be replaced with a new one the next time they are
 572# checked out from the pool. (integer value)
 573#connection_recycle_time = 3600
 574
 575# Maximum number of SQL connections to keep open in a pool. Setting a value of
 576# 0 indicates no limit. (integer value)
 577#max_pool_size = 5
 578
 579# Maximum number of database connection retries during startup. Set to -1 to
 580# specify an infinite retry count. (integer value)
 581# Deprecated group/name - [DEFAULT]/sql_max_retries
 582# Deprecated group/name - [DATABASE]/sql_max_retries
 583#max_retries = 10
 584
 585# Interval between retries of opening a SQL connection. (integer value)
 586# Deprecated group/name - [DEFAULT]/sql_retry_interval
 587# Deprecated group/name - [DATABASE]/reconnect_interval
 588#retry_interval = 10
 589
 590# If set, use this value for max_overflow with SQLAlchemy. (integer value)
 591# Deprecated group/name - [DEFAULT]/sql_max_overflow
 592# Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
 593#max_overflow = 50
 594
 595# Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
 596# value)
 597# Minimum value: 0
 598# Maximum value: 100
 599# Deprecated group/name - [DEFAULT]/sql_connection_debug
 600#connection_debug = 0
 601
 602# Add Python stack traces to SQL as comment strings. (boolean value)
 603# Deprecated group/name - [DEFAULT]/sql_connection_trace
 604#connection_trace = false
 605
 606# If set, use this value for pool_timeout with SQLAlchemy. (integer value)
 607# Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
 608#pool_timeout = <None>
 609
 610# Enable the experimental use of database reconnect on connection lost.
 611# (boolean value)
 612#use_db_reconnect = false
 613
 614# Seconds between retries of a database transaction. (integer value)
 615#db_retry_interval = 1
 616
 617# If True, increases the interval between retries of a database operation up to
 618# db_max_retry_interval. (boolean value)
 619#db_inc_retry_interval = true
 620
 621# If db_inc_retry_interval is set, the maximum seconds between retries of a
 622# database operation. (integer value)
 623#db_max_retry_interval = 10
 624
 625# Maximum retries in case of connection error or deadlock error before error is
 626# raised. Set to -1 to specify an infinite retry count. (integer value)
 627#db_max_retries = 20
 628
 629# Optional URL parameters to append onto the connection URL at connect time;
 630# specify as param1=value1&param2=value2&... (string value)
 631#connection_parameters =
 632
 633
 634[glance]
 635
 636#
 637# From sahara.config
 638#
 639
 640# Allow to perform insecure SSL requests to glance. (boolean value)
 641#api_insecure = false
 642
 643# Location of ca certificates file to use for glance client requests. (string
 644# value)
 645#ca_file = <None>
 646
 647# Endpoint type for glance client requests (string value)
 648#endpoint_type = internalURL
 649
 650
 651[heat]
 652
 653#
 654# From sahara.config
 655#
 656
 657# Allow to perform insecure SSL requests to heat. (boolean value)
 658#api_insecure = false
 659
 660# Location of ca certificates file to use for heat client requests. (string
 661# value)
 662#ca_file = <None>
 663
 664# Endpoint type for heat client requests (string value)
 665#endpoint_type = internalURL
 666
 667
 668[keystone]
 669
 670#
 671# From sahara.config
 672#
 673
 674# Allow to perform insecure SSL requests to keystone. (boolean value)
 675#api_insecure = false
 676
 677# Location of ca certificates file to use for keystone client requests. (string
 678# value)
 679#ca_file = <None>
 680
 681# Endpoint type for keystone client requests (string value)
 682#endpoint_type = internalURL
 683
 684
 685[keystone_authtoken]
 686
 687#
 688# From keystonemiddleware.auth_token
 689#
 690
 691# Complete "public" Identity API endpoint. This endpoint should not be an
 692# "admin" endpoint, as it should be accessible by all end users.
 693# Unauthenticated clients are redirected to this endpoint to authenticate.
 694# Although this endpoint should ideally be unversioned, client support in the
 695# wild varies. If you're using a versioned v2 endpoint here, then this should
 696# *not* be the same endpoint the service user utilizes for validating tokens,
 697# because normal end users may not be able to reach that endpoint. (string
 698# value)
 699# Deprecated group/name - [keystone_authtoken]/auth_uri
 700#www_authenticate_uri = <None>
 701
 702# DEPRECATED: Complete "public" Identity API endpoint. This endpoint should not
 703# be an "admin" endpoint, as it should be accessible by all end users.
 704# Unauthenticated clients are redirected to this endpoint to authenticate.
 705# Although this endpoint should ideally be unversioned, client support in the
 706# wild varies. If you're using a versioned v2 endpoint here, then this should
 707# *not* be the same endpoint the service user utilizes for validating tokens,
 708# because normal end users may not be able to reach that endpoint. This option
 709# is deprecated in favor of www_authenticate_uri and will be removed in the S
 710# release. (string value)
 711# This option is deprecated for removal since Queens.
 712# Its value may be silently ignored in the future.
 713# Reason: The auth_uri option is deprecated in favor of www_authenticate_uri
 714# and will be removed in the S  release.
 715#auth_uri = <None>
 716
 717# API version of the Identity API endpoint. (string value)
 718#auth_version = <None>
 719
 720# Interface to use for the Identity API endpoint. Valid values are "public",
 721# "internal" (default) or "admin". (string value)
 722#interface = internal
 723
 724# Do not handle authorization requests within the middleware, but delegate the
 725# authorization decision to downstream WSGI components. (boolean value)
 726#delay_auth_decision = false
 727
 728# Request timeout value for communicating with Identity API server. (integer
 729# value)
 730#http_connect_timeout = <None>
 731
 732# How many times are we trying to reconnect when communicating with Identity
 733# API Server. (integer value)
 734#http_request_max_retries = 3
 735
 736# Request environment key where the Swift cache object is stored. When
 737# auth_token middleware is deployed with a Swift cache, use this option to have
 738# the middleware share a caching backend with swift. Otherwise, use the
 739# ``memcached_servers`` option instead. (string value)
 740#cache = <None>
 741
 742# Required if identity server requires client certificate (string value)
 743#certfile = <None>
 744
 745# Required if identity server requires client certificate (string value)
 746#keyfile = <None>
 747
 748# A PEM encoded Certificate Authority to use when verifying HTTPs connections.
 749# Defaults to system CAs. (string value)
 750#cafile = <None>
 751
 752# Verify HTTPS connections. (boolean value)
 753#insecure = false
 754
 755# The region in which the identity server can be found. (string value)
 756#region_name = <None>
 757
 758# Optionally specify a list of memcached server(s) to use for caching. If left
 759# undefined, tokens will instead be cached in-process. (list value)
 760# Deprecated group/name - [keystone_authtoken]/memcache_servers
 761#memcached_servers = <None>
 762
 763# In order to prevent excessive effort spent validating tokens, the middleware
 764# caches previously-seen tokens for a configurable duration (in seconds). Set
 765# to -1 to disable caching completely. (integer value)
 766#token_cache_time = 300
 767
 768# (Optional) If defined, indicate whether token data should be authenticated or
 769# authenticated and encrypted. If MAC, token data is authenticated (with HMAC)
 770# in the cache. If ENCRYPT, token data is encrypted and authenticated in the
 771# cache. If the value is not one of these options or empty, auth_token will
 772# raise an exception on initialization. (string value)
 773# Possible values:
 774# None - <No description provided>
 775# MAC - <No description provided>
 776# ENCRYPT - <No description provided>
 777#memcache_security_strategy = None
 778
 779# (Optional, mandatory if memcache_security_strategy is defined) This string is
 780# used for key derivation. (string value)
 781#memcache_secret_key = <None>
 782
 783# (Optional) Number of seconds memcached server is considered dead before it is
 784# tried again. (integer value)
 785#memcache_pool_dead_retry = 300
 786
 787# (Optional) Maximum total number of open connections to every memcached
 788# server. (integer value)
 789#memcache_pool_maxsize = 10
 790
 791# (Optional) Socket timeout in seconds for communicating with a memcached
 792# server. (integer value)
 793#memcache_pool_socket_timeout = 3
 794
 795# (Optional) Number of seconds a connection to memcached is held unused in the
 796# pool before it is closed. (integer value)
 797#memcache_pool_unused_timeout = 60
 798
 799# (Optional) Number of seconds that an operation will wait to get a memcached
 800# client connection from the pool. (integer value)
 801#memcache_pool_conn_get_timeout = 10
 802
 803# (Optional) Use the advanced (eventlet safe) memcached client pool. (boolean
 804# value)
 805#memcache_use_advanced_pool = true
 806
 807# (Optional) Indicate whether to set the X-Service-Catalog header. If False,
 808# middleware will not ask for service catalog on token validation and will not
 809# set the X-Service-Catalog header. (boolean value)
 810#include_service_catalog = true
 811
 812# Used to control the use and type of token binding. Can be set to: "disabled"
 813# to not check token binding. "permissive" (default) to validate binding
 814# information if the bind type is of a form known to the server and ignore it
 815# if not. "strict" like "permissive" but if the bind type is unknown the token
 816# will be rejected. "required" any form of token binding is needed to be
 817# allowed. Finally the name of a binding method that must be present in tokens.
 818# (string value)
 819#enforce_token_bind = permissive
 820
 821# A choice of roles that must be present in a service token. Service tokens are
 822# allowed to request that an expired token can be used and so this check should
 823# tightly control that only actual services should be sending this token. Roles
 824# here are applied as an ANY check so any role in this list must be present.
 825# For backwards compatibility reasons this currently only affects the
 826# allow_expired check. (list value)
 827#service_token_roles = service
 828
 829# For backwards compatibility reasons we must let valid service tokens pass
 830# that don't pass the service_token_roles check as valid. Setting this true
 831# will become the default in a future release and should be enabled if
 832# possible. (boolean value)
 833#service_token_roles_required = false
 834
 835# The name or type of the service as it appears in the service catalog. This is
 836# used to validate tokens that have restricted access rules. (string value)
 837#service_type = <None>
 838
 839# Authentication type to load (string value)
 840# Deprecated group/name - [keystone_authtoken]/auth_plugin
 841#auth_type = <None>
 842
 843# Config Section from which to load plugin specific options (string value)
 844#auth_section = <None>
 845
 846
 847[manila]
 848
 849#
 850# From sahara.config
 851#
 852
 853# Version of the manila API to use. (string value)
 854#api_version = 1
 855
 856# Allow to perform insecure SSL requests to manila. (boolean value)
 857#api_insecure = true
 858
 859# Location of ca certificates file to use for manila client requests. (string
 860# value)
 861#ca_file = <None>
 862
 863
 864[neutron]
 865
 866#
 867# From sahara.config
 868#
 869
 870# Allow to perform insecure SSL requests to neutron. (boolean value)
 871#api_insecure = false
 872
 873# Location of ca certificates file to use for neutron client requests. (string
 874# value)
 875#ca_file = <None>
 876
 877# Endpoint type for neutron client requests (string value)
 878#endpoint_type = internalURL
 879
 880
 881[nova]
 882
 883#
 884# From sahara.config
 885#
 886
 887# Allow to perform insecure SSL requests to nova. (boolean value)
 888#api_insecure = false
 889
 890# Location of ca certificates file to use for nova client requests. (string
 891# value)
 892#ca_file = <None>
 893
 894# Endpoint type for nova client requests (string value)
 895#endpoint_type = internalURL
 896
 897
 898[object_store_access]
 899
 900#
 901# From sahara.config
 902#
 903
 904# Location of ca certificate file to use for identity client requests via
 905# public endpoint (string value)
 906#public_identity_ca_file = <None>
 907
 908# Location of ca certificate file to use for object-store client requests via
 909# public endpoint (string value)
 910#public_object_store_ca_file = <None>
 911
 912
 913[oslo_concurrency]
 914
 915#
 916# From oslo.concurrency
 917#
 918
 919# Enables or disables inter-process locks. (boolean value)
 920#disable_process_locking = false
 921
 922# Directory to use for lock files.  For security, the specified directory
 923# should only be writable by the user running the processes that need locking.
 924# Defaults to environment variable OSLO_LOCK_PATH. If external locks are used,
 925# a lock path must be set. (string value)
 926#lock_path = <None>
 927
 928
 929[oslo_messaging_amqp]
 930
 931#
 932# From oslo.messaging
 933#
 934
 935# Name for the AMQP container. must be globally unique. Defaults to a generated
 936# UUID (string value)
 937#container_name = <None>
 938
 939# Timeout for inactive connections (in seconds) (integer value)
 940#idle_timeout = 0
 941
 942# Debug: dump AMQP frames to stdout (boolean value)
 943#trace = false
 944
 945# Attempt to connect via SSL. If no other ssl-related parameters are given, it
 946# will use the system's CA-bundle to verify the server's certificate. (boolean
 947# value)
 948#ssl = false
 949
 950# CA certificate PEM file used to verify the server's certificate (string
 951# value)
 952#ssl_ca_file =
 953
 954# Self-identifying certificate PEM file for client authentication (string
 955# value)
 956#ssl_cert_file =
 957
 958# Private key PEM file used to sign ssl_cert_file certificate (optional)
 959# (string value)
 960#ssl_key_file =
 961
 962# Password for decrypting ssl_key_file (if encrypted) (string value)
 963#ssl_key_password = <None>
 964
 965# By default SSL checks that the name in the server's certificate matches the
 966# hostname in the transport_url. In some configurations it may be preferable to
 967# use the virtual hostname instead, for example if the server uses the Server
 968# Name Indication TLS extension (rfc6066) to provide a certificate per virtual
 969# host. Set ssl_verify_vhost to True if the server's SSL certificate uses the
 970# virtual host name instead of the DNS name. (boolean value)
 971#ssl_verify_vhost = false
 972
 973# Space separated list of acceptable SASL mechanisms (string value)
 974#sasl_mechanisms =
 975
 976# Path to directory that contains the SASL configuration (string value)
 977#sasl_config_dir =
 978
 979# Name of configuration file (without .conf suffix) (string value)
 980#sasl_config_name =
 981
 982# SASL realm to use if no realm present in username (string value)
 983#sasl_default_realm =
 984
 985# Seconds to pause before attempting to re-connect. (integer value)
 986# Minimum value: 1
 987#connection_retry_interval = 1
 988
 989# Increase the connection_retry_interval by this many seconds after each
 990# unsuccessful failover attempt. (integer value)
 991# Minimum value: 0
 992#connection_retry_backoff = 2
 993
 994# Maximum limit for connection_retry_interval + connection_retry_backoff
 995# (integer value)
 996# Minimum value: 1
 997#connection_retry_interval_max = 30
 998
 999# Time to pause between re-connecting an AMQP 1.0 link that failed due to a
1000# recoverable error. (integer value)
1001# Minimum value: 1
1002#link_retry_delay = 10
1003
1004# The maximum number of attempts to re-send a reply message which failed due to
1005# a recoverable error. (integer value)
1006# Minimum value: -1
1007#default_reply_retry = 0
1008
1009# The deadline for an rpc reply message delivery. (integer value)
1010# Minimum value: 5
1011#default_reply_timeout = 30
1012
1013# The deadline for an rpc cast or call message delivery. Only used when caller
1014# does not provide a timeout expiry. (integer value)
1015# Minimum value: 5
1016#default_send_timeout = 30
1017
1018# The deadline for a sent notification message delivery. Only used when caller
1019# does not provide a timeout expiry. (integer value)
1020# Minimum value: 5
1021#default_notify_timeout = 30
1022
1023# The duration to schedule a purge of idle sender links. Detach link after
1024# expiry. (integer value)
1025# Minimum value: 1
1026#default_sender_link_timeout = 600
1027
1028# Indicates the addressing mode used by the driver.
1029# Permitted values:
1030# 'legacy'   - use legacy non-routable addressing
1031# 'routable' - use routable addresses
1032# 'dynamic'  - use legacy addresses if the message bus does not support routing
1033# otherwise use routable addressing (string value)
1034#addressing_mode = dynamic
1035
1036# Enable virtual host support for those message buses that do not natively
1037# support virtual hosting (such as qpidd). When set to true the virtual host
1038# name will be added to all message bus addresses, effectively creating a
1039# private 'subnet' per virtual host. Set to False if the message bus supports
1040# virtual hosting using the 'hostname' field in the AMQP 1.0 Open performative
1041# as the name of the virtual host. (boolean value)
1042#pseudo_vhost = true
1043
1044# address prefix used when sending to a specific server (string value)
1045#server_request_prefix = exclusive
1046
1047# address prefix used when broadcasting to all servers (string value)
1048#broadcast_prefix = broadcast
1049
1050# address prefix when sending to any server in group (string value)
1051#group_request_prefix = unicast
1052
1053# Address prefix for all generated RPC addresses (string value)
1054#rpc_address_prefix = openstack.org/om/rpc
1055
1056# Address prefix for all generated Notification addresses (string value)
1057#notify_address_prefix = openstack.org/om/notify
1058
1059# Appended to the address prefix when sending a fanout message. Used by the
1060# message bus to identify fanout messages. (string value)
1061#multicast_address = multicast
1062
1063# Appended to the address prefix when sending to a particular RPC/Notification
1064# server. Used by the message bus to identify messages sent to a single
1065# destination. (string value)
1066#unicast_address = unicast
1067
1068# Appended to the address prefix when sending to a group of consumers. Used by
1069# the message bus to identify messages that should be delivered in a round-
1070# robin fashion across consumers. (string value)
1071#anycast_address = anycast
1072
1073# Exchange name used in notification addresses.
1074# Exchange name resolution precedence:
1075# Target.exchange if set
1076# else default_notification_exchange if set
1077# else control_exchange if set
1078# else 'notify' (string value)
1079#default_notification_exchange = <None>
1080
1081# Exchange name used in RPC addresses.
1082# Exchange name resolution precedence:
1083# Target.exchange if set
1084# else default_rpc_exchange if set
1085# else control_exchange if set
1086# else 'rpc' (string value)
1087#default_rpc_exchange = <None>
1088
1089# Window size for incoming RPC Reply messages. (integer value)
1090# Minimum value: 1
1091#reply_link_credit = 200
1092
1093# Window size for incoming RPC Request messages (integer value)
1094# Minimum value: 1
1095#rpc_server_credit = 100
1096
1097# Window size for incoming Notification messages (integer value)
1098# Minimum value: 1
1099#notify_server_credit = 100
1100
1101# Send messages of this type pre-settled.
1102# Pre-settled messages will not receive acknowledgement
1103# from the peer. Note well: pre-settled messages may be
1104# silently discarded if the delivery fails.
1105# Permitted values:
1106# 'rpc-call' - send RPC Calls pre-settled
1107# 'rpc-reply'- send RPC Replies pre-settled
1108# 'rpc-cast' - Send RPC Casts pre-settled
1109# 'notify'   - Send Notifications pre-settled
1110#  (multi valued)
1111#pre_settled = rpc-cast
1112#pre_settled = rpc-reply
1113
1114
1115[oslo_messaging_kafka]
1116
1117#
1118# From oslo.messaging
1119#
1120
1121# Max fetch bytes of Kafka consumer (integer value)
1122#kafka_max_fetch_bytes = 1048576
1123
1124# Default timeout(s) for Kafka consumers (floating point value)
1125#kafka_consumer_timeout = 1.0
1126
1127# DEPRECATED: Pool Size for Kafka Consumers (integer value)
1128# This option is deprecated for removal.
1129# Its value may be silently ignored in the future.
1130# Reason: Driver no longer uses connection pool.
1131#pool_size = 10
1132
1133# DEPRECATED: The pool size limit for connections expiration policy (integer
1134# value)
1135# This option is deprecated for removal.
1136# Its value may be silently ignored in the future.
1137# Reason: Driver no longer uses connection pool.
1138#conn_pool_min_size = 2
1139
1140# DEPRECATED: The time-to-live in sec of idle connections in the pool (integer
1141# value)
1142# This option is deprecated for removal.
1143# Its value may be silently ignored in the future.
1144# Reason: Driver no longer uses connection pool.
1145#conn_pool_ttl = 1200
1146
1147# Group id for Kafka consumer. Consumers in one group will coordinate message
1148# consumption (string value)
1149#consumer_group = oslo_messaging_consumer
1150
1151# Upper bound on the delay for KafkaProducer batching in seconds (floating
1152# point value)
1153#producer_batch_timeout = 0.0
1154
1155# Size of batch for the producer async send (integer value)
1156#producer_batch_size = 16384
1157
1158# The compression codec for all data generated by the producer. If not set,
1159# compression will not be used. Note that the allowed values of this depend on
1160# the kafka version (string value)
1161# Possible values:
1162# none - <No description provided>
1163# gzip - <No description provided>
1164# snappy - <No description provided>
1165# lz4 - <No description provided>
1166# zstd - <No description provided>
1167#compression_codec = none
1168
1169# Enable asynchronous consumer commits (boolean value)
1170#enable_auto_commit = false
1171
1172# The maximum number of records returned in a poll call (integer value)
1173#max_poll_records = 500
1174
1175# Protocol used to communicate with brokers (string value)
1176# Possible values:
1177# PLAINTEXT - <No description provided>
1178# SASL_PLAINTEXT - <No description provided>
1179# SSL - <No description provided>
1180# SASL_SSL - <No description provided>
1181#security_protocol = PLAINTEXT
1182
1183# Mechanism when security protocol is SASL (string value)
1184#sasl_mechanism = PLAIN
1185
1186# CA certificate PEM file used to verify the server certificate (string value)
1187#ssl_cafile =
1188
1189# Client certificate PEM file used for authentication. (string value)
1190#ssl_client_cert_file =
1191
1192# Client key PEM file used for authentication. (string value)
1193#ssl_client_key_file =
1194
1195# Client key password file used for authentication. (string value)
1196#ssl_client_key_password =
1197
1198
1199[oslo_messaging_notifications]
1200
1201#
1202# From oslo.messaging
1203#
1204
1205# The Drivers(s) to handle sending notifications. Possible values are
1206# messaging, messagingv2, routing, log, test, noop (multi valued)
1207# Deprecated group/name - [DEFAULT]/notification_driver
1208#driver =
1209
1210# A URL representing the messaging driver to use for notifications. If not set,
1211# we fall back to the same configuration used for RPC. (string value)
1212# Deprecated group/name - [DEFAULT]/notification_transport_url
1213#transport_url = <None>
1214
1215# AMQP topic used for OpenStack notifications. (list value)
1216# Deprecated group/name - [rpc_notifier2]/topics
1217# Deprecated group/name - [DEFAULT]/notification_topics
1218#topics = notifications
1219
1220# The maximum number of attempts to re-send a notification message which failed
1221# to be delivered due to a recoverable error. 0 - No retry, -1 - indefinite
1222# (integer value)
1223#retry = -1
1224
1225#
1226# From sahara.config
1227#
1228
1229# Notification level for outgoing notifications (string value)
1230# Deprecated group/name - [DEFAULT]/notification_level
1231#level = INFO
1232
1233# Identifier of the publisher (string value)
1234# Deprecated group/name - [DEFAULT]/notification_publisher_id
1235#publisher_id = <None>
1236
1237
1238[oslo_messaging_rabbit]
1239
1240#
1241# From oslo.messaging
1242#
1243
1244# Use durable queues in AMQP. (boolean value)
1245#amqp_durable_queues = false
1246
1247# Auto-delete queues in AMQP. (boolean value)
1248#amqp_auto_delete = false
1249
1250# Connect over SSL. (boolean value)
1251# Deprecated group/name - [oslo_messaging_rabbit]/rabbit_use_ssl
1252#ssl = false
1253
1254# SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
1255# SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
1256# distributions. (string value)
1257# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_version
1258#ssl_version =
1259
1260# SSL key file (valid only if SSL enabled). (string value)
1261# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_keyfile
1262#ssl_key_file =
1263
1264# SSL cert file (valid only if SSL enabled). (string value)
1265# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_certfile
1266#ssl_cert_file =
1267
1268# SSL certification authority file (valid only if SSL enabled). (string value)
1269# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_ca_certs
1270#ssl_ca_file =
1271
1272# DEPRECATED: Run the health check heartbeat thread through a native python
1273# thread by default. If this option is equal to False then the health check
1274# heartbeat will inherit the execution model from the parent process. For
1275# example if the parent process has monkey patched the stdlib by using
1276# eventlet/greenlet then the heartbeat will be run through a green thread.
1277# (boolean value)
1278# This option is deprecated for removal.
1279# Its value may be silently ignored in the future.
1280#heartbeat_in_pthread = true
1281
1282# How long to wait before reconnecting in response to an AMQP consumer cancel
1283# notification. (floating point value)
1284#kombu_reconnect_delay = 1.0
1285
1286# EXPERIMENTAL: Possible values are: gzip, bz2. If not set compression will not
1287# be used. This option may not be available in future versions. (string value)
1288#kombu_compression = <None>
1289
1290# How long to wait a missing client before abandoning to send it its replies.
1291# This value should not be longer than rpc_response_timeout. (integer value)
1292# Deprecated group/name - [oslo_messaging_rabbit]/kombu_reconnect_timeout
1293#kombu_missing_consumer_retry_timeout = 60
1294
1295# Determines how the next RabbitMQ node is chosen in case the one we are
1296# currently connected to becomes unavailable. Takes effect only if more than
1297# one RabbitMQ node is provided in config. (string value)
1298# Possible values:
1299# round-robin - <No description provided>
1300# shuffle - <No description provided>
1301#kombu_failover_strategy = round-robin
1302
1303# The RabbitMQ login method. (string value)
1304# Possible values:
1305# PLAIN - <No description provided>
1306# AMQPLAIN - <No description provided>
1307# RABBIT-CR-DEMO - <No description provided>
1308#rabbit_login_method = AMQPLAIN
1309
1310# How frequently to retry connecting with RabbitMQ. (integer value)
1311#rabbit_retry_interval = 1
1312
1313# How long to backoff for between retries when connecting to RabbitMQ. (integer
1314# value)
1315#rabbit_retry_backoff = 2
1316
1317# Maximum interval of RabbitMQ connection retries. Default is 30 seconds.
1318# (integer value)
1319#rabbit_interval_max = 30
1320
1321# Try to use HA queues in RabbitMQ (x-ha-policy: all). If you change this
1322# option, you must wipe the RabbitMQ database. In RabbitMQ 3.0, queue mirroring
1323# is no longer controlled by the x-ha-policy argument when declaring a queue.
1324# If you just want to make sure that all queues (except those with auto-
1325# generated names) are mirrored across all nodes, run: "rabbitmqctl set_policy
1326# HA '^(?!amq\.).*' '{"ha-mode": "all"}' " (boolean value)
1327#rabbit_ha_queues = false
1328
1329# Positive integer representing duration in seconds for queue TTL (x-expires).
1330# Queues which are unused for the duration of the TTL are automatically
1331# deleted. The parameter affects only reply and fanout queues. (integer value)
1332# Minimum value: 1
1333#rabbit_transient_queues_ttl = 1800
1334
1335# Specifies the number of messages to prefetch. Setting to zero allows
1336# unlimited messages. (integer value)
1337#rabbit_qos_prefetch_count = 0
1338
1339# Number of seconds after which the Rabbit broker is considered down if
1340# heartbeat's keep-alive fails (0 disables heartbeat). (integer value)
1341#heartbeat_timeout_threshold = 60
1342
1343# How often times during the heartbeat_timeout_threshold we check the
1344# heartbeat. (integer value)
1345#heartbeat_rate = 2
1346
1347# DEPRECATED: (DEPRECATED) Enable/Disable the RabbitMQ mandatory flag for
1348# direct send. The direct send is used as reply, so the MessageUndeliverable
1349# exception is raised in case the client queue does not
1350# exist.MessageUndeliverable exception will be used to loop for a timeout to
1351# lets a chance to sender to recover.This flag is deprecated and it will not be
1352# possible to deactivate this functionality anymore (boolean value)
1353# This option is deprecated for removal.
1354# Its value may be silently ignored in the future.
1355# Reason: Mandatory flag no longer deactivable.
1356#direct_mandatory_flag = true
1357
1358# Enable x-cancel-on-ha-failover flag so that rabbitmq server will cancel and
1359# notify consumerswhen queue is down (boolean value)
1360#enable_cancel_on_failover = false
1361
1362
1363[oslo_middleware]
1364
1365#
1366# From oslo.middleware.http_proxy_to_wsgi
1367#
1368
1369# Whether the application is behind a proxy or not. This determines if the
1370# middleware should parse the headers or not. (boolean value)
1371#enable_proxy_headers_parsing = false
1372
1373
1374[oslo_policy]
1375
1376#
1377# From oslo.policy
1378#
1379
1380# This option controls whether or not to enforce scope when evaluating
1381# policies. If ``True``, the scope of the token used in the request is compared
1382# to the ``scope_types`` of the policy being enforced. If the scopes do not
1383# match, an ``InvalidScope`` exception will be raised. If ``False``, a message
1384# will be logged informing operators that policies are being invoked with
1385# mismatching scope. (boolean value)
1386#enforce_scope = false
1387
1388# This option controls whether or not to use old deprecated defaults when
1389# evaluating policies. If ``True``, the old deprecated defaults are not going
1390# to be evaluated. This means if any existing token is allowed for old defaults
1391# but is disallowed for new defaults, it will be disallowed. It is encouraged
1392# to enable this flag along with the ``enforce_scope`` flag so that you can get
1393# the benefits of new defaults and ``scope_type`` together (boolean value)
1394#enforce_new_defaults = false
1395
1396# The relative or absolute path of a file that maps roles to permissions for a
1397# given service. Relative paths must be specified in relation to the
1398# configuration file setting this option. (string value)
1399#policy_file = policy.yaml
1400
1401# Default rule. Enforced when a requested rule is not found. (string value)
1402#policy_default_rule = default
1403
1404# Directories where policy configuration files are stored. They can be relative
1405# to any directory in the search path defined by the config_dir option, or
1406# absolute paths. The file defined by policy_file must exist for these
1407# directories to be searched.  Missing or empty directories are ignored. (multi
1408# valued)
1409#policy_dirs = policy.d
1410
1411# Content Type to send and receive data for REST based policy check (string
1412# value)
1413# Possible values:
1414# application/x-www-form-urlencoded - <No description provided>
1415# application/json - <No description provided>
1416#remote_content_type = application/x-www-form-urlencoded
1417
1418# server identity verification for REST based policy check (boolean value)
1419#remote_ssl_verify_server_crt = false
1420
1421# Absolute path to ca cert file for REST based policy check (string value)
1422#remote_ssl_ca_crt_file = <None>
1423
1424# Absolute path to client cert for REST based policy check (string value)
1425#remote_ssl_client_crt_file = <None>
1426
1427# Absolute path client key file REST based policy check (string value)
1428#remote_ssl_client_key_file = <None>
1429
1430
1431[retries]
1432
1433#
1434# From sahara.config
1435#
1436
1437# Number of times to retry the request to client before failing (integer value)
1438#retries_number = 5
1439
1440# Time between the retries to client (in seconds). (integer value)
1441#retry_after = 10
1442
1443
1444[ssl]
1445
1446#
1447# From oslo.service.sslutils
1448#
1449
1450# CA certificate file to use to verify connecting clients. (string value)
1451# Deprecated group/name - [DEFAULT]/ssl_ca_file
1452#ca_file = <None>
1453
1454# Certificate file to use when starting the server securely. (string value)
1455# Deprecated group/name - [DEFAULT]/ssl_cert_file
1456#cert_file = <None>
1457
1458# Private key file to use when starting the server securely. (string value)
1459# Deprecated group/name - [DEFAULT]/ssl_key_file
1460#key_file = <None>
1461
1462# SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
1463# SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
1464# distributions. (string value)
1465#version = <None>
1466
1467# Sets the list of available ciphers. value should be a string in the OpenSSL
1468# cipher list format. (string value)
1469#ciphers = <None>
1470
1471
1472[swift]
1473
1474#
1475# From sahara.config
1476#
1477
1478# Allow to perform insecure SSL requests to swift. (boolean value)
1479#api_insecure = false
1480
1481# Location of ca certificates file to use for swift client requests. (string
1482# value)
1483#ca_file = <None>
1484
1485# Endpoint type for swift client requests (string value)
1486#endpoint_type = internalURL
1487
1488
1489[timeouts]
1490
1491#
1492# From sahara.config
1493#
1494
1495# Assign IPs timeout, in seconds (integer value)
1496#ips_assign_timeout = 10800
1497
1498# Wait for instance accessibility, in seconds (integer value)
1499#wait_until_accessible = 10800
1500
1501# Wait for instances to be deleted, in seconds (integer value)
1502#delete_instances_timeout = 10800
1503
1504# Timeout for detaching volumes from instance, in seconds (integer value)
1505#detach_volume_timeout = 300
1506
1507
1508[trustee]
1509
1510#
1511# From sahara.config
1512#
1513
1514# Username for trusts creation (string value)
1515#username = <None>
1516
1517# Password for trusts creation (string value)
1518#password = <None>
1519
1520# Project name for trusts creation (string value)
1521#project_name = <None>
1522
1523# User domain name for trusts creation (string value)
1524#user_domain_name = Default
1525
1526# Project domain name for trusts creation (string value)
1527#project_domain_name = Default
1528
1529# Auth url for trusts creation (string value)
1530#auth_url = <None>