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 [%(global_request_id)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 %(project)s %(domain)s %(system_scope)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# For Galera only, configure wsrep_sync_wait causality checks on new
 567# connections.  Default is None, meaning don't configure any setting. (integer
 568# value)
 569#mysql_wsrep_sync_wait = <None>
 570
 571# Connections which have been present in the connection pool longer than this
 572# number of seconds will be replaced with a new one the next time they are
 573# checked out from the pool. (integer value)
 574#connection_recycle_time = 3600
 575
 576# Maximum number of SQL connections to keep open in a pool. Setting a value of
 577# 0 indicates no limit. (integer value)
 578#max_pool_size = 5
 579
 580# Maximum number of database connection retries during startup. Set to -1 to
 581# specify an infinite retry count. (integer value)
 582# Deprecated group/name - [DEFAULT]/sql_max_retries
 583# Deprecated group/name - [DATABASE]/sql_max_retries
 584#max_retries = 10
 585
 586# Interval between retries of opening a SQL connection. (integer value)
 587# Deprecated group/name - [DEFAULT]/sql_retry_interval
 588# Deprecated group/name - [DATABASE]/reconnect_interval
 589#retry_interval = 10
 590
 591# If set, use this value for max_overflow with SQLAlchemy. (integer value)
 592# Deprecated group/name - [DEFAULT]/sql_max_overflow
 593# Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
 594#max_overflow = 50
 595
 596# Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
 597# value)
 598# Minimum value: 0
 599# Maximum value: 100
 600# Deprecated group/name - [DEFAULT]/sql_connection_debug
 601#connection_debug = 0
 602
 603# Add Python stack traces to SQL as comment strings. (boolean value)
 604# Deprecated group/name - [DEFAULT]/sql_connection_trace
 605#connection_trace = false
 606
 607# If set, use this value for pool_timeout with SQLAlchemy. (integer value)
 608# Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
 609#pool_timeout = <None>
 610
 611# Enable the experimental use of database reconnect on connection lost.
 612# (boolean value)
 613#use_db_reconnect = false
 614
 615# Seconds between retries of a database transaction. (integer value)
 616#db_retry_interval = 1
 617
 618# If True, increases the interval between retries of a database operation up to
 619# db_max_retry_interval. (boolean value)
 620#db_inc_retry_interval = true
 621
 622# If db_inc_retry_interval is set, the maximum seconds between retries of a
 623# database operation. (integer value)
 624#db_max_retry_interval = 10
 625
 626# Maximum retries in case of connection error or deadlock error before error is
 627# raised. Set to -1 to specify an infinite retry count. (integer value)
 628#db_max_retries = 20
 629
 630# Optional URL parameters to append onto the connection URL at connect time;
 631# specify as param1=value1&param2=value2&... (string value)
 632#connection_parameters =
 633
 634
 635[glance]
 636
 637#
 638# From sahara.config
 639#
 640
 641# Allow to perform insecure SSL requests to glance. (boolean value)
 642#api_insecure = false
 643
 644# Location of ca certificates file to use for glance client requests. (string
 645# value)
 646#ca_file = <None>
 647
 648# Endpoint type for glance client requests (string value)
 649#endpoint_type = internalURL
 650
 651
 652[healthcheck]
 653
 654#
 655# From oslo.middleware.healthcheck
 656#
 657
 658# DEPRECATED: The path to respond to healtcheck requests on. (string value)
 659# This option is deprecated for removal.
 660# Its value may be silently ignored in the future.
 661#path = /healthcheck
 662
 663# Show more detailed information as part of the response. Security note:
 664# Enabling this option may expose sensitive details about the service being
 665# monitored. Be sure to verify that it will not violate your security policies.
 666# (boolean value)
 667#detailed = false
 668
 669# Additional backends that can perform health checks and report that
 670# information back as part of a request. (list value)
 671#backends =
 672
 673# Check the presence of a file to determine if an application is running on a
 674# port. Used by DisableByFileHealthcheck plugin. (string value)
 675#disable_by_file_path = <None>
 676
 677# Check the presence of a file based on a port to determine if an application
 678# is running on a port. Expects a "port:path" list of strings. Used by
 679# DisableByFilesPortsHealthcheck plugin. (list value)
 680#disable_by_file_paths =
 681
 682
 683[heat]
 684
 685#
 686# From sahara.config
 687#
 688
 689# Allow to perform insecure SSL requests to heat. (boolean value)
 690#api_insecure = false
 691
 692# Location of ca certificates file to use for heat client requests. (string
 693# value)
 694#ca_file = <None>
 695
 696# Endpoint type for heat client requests (string value)
 697#endpoint_type = internalURL
 698
 699
 700[keystone]
 701
 702#
 703# From sahara.config
 704#
 705
 706# Allow to perform insecure SSL requests to keystone. (boolean value)
 707#api_insecure = false
 708
 709# Location of ca certificates file to use for keystone client requests. (string
 710# value)
 711#ca_file = <None>
 712
 713# Endpoint type for keystone client requests (string value)
 714#endpoint_type = internalURL
 715
 716
 717[keystone_authtoken]
 718
 719#
 720# From keystonemiddleware.auth_token
 721#
 722
 723# Complete "public" Identity API endpoint. This endpoint should not be an
 724# "admin" endpoint, as it should be accessible by all end users.
 725# Unauthenticated clients are redirected to this endpoint to authenticate.
 726# Although this endpoint should ideally be unversioned, client support in the
 727# wild varies. If you're using a versioned v2 endpoint here, then this should
 728# *not* be the same endpoint the service user utilizes for validating tokens,
 729# because normal end users may not be able to reach that endpoint. (string
 730# value)
 731# Deprecated group/name - [keystone_authtoken]/auth_uri
 732#www_authenticate_uri = <None>
 733
 734# DEPRECATED: Complete "public" Identity API endpoint. This endpoint should not
 735# be an "admin" endpoint, as it should be accessible by all end users.
 736# Unauthenticated clients are redirected to this endpoint to authenticate.
 737# Although this endpoint should ideally be unversioned, client support in the
 738# wild varies. If you're using a versioned v2 endpoint here, then this should
 739# *not* be the same endpoint the service user utilizes for validating tokens,
 740# because normal end users may not be able to reach that endpoint. This option
 741# is deprecated in favor of www_authenticate_uri and will be removed in the S
 742# release. (string value)
 743# This option is deprecated for removal since Queens.
 744# Its value may be silently ignored in the future.
 745# Reason: The auth_uri option is deprecated in favor of www_authenticate_uri
 746# and will be removed in the S  release.
 747#auth_uri = <None>
 748
 749# API version of the Identity API endpoint. (string value)
 750#auth_version = <None>
 751
 752# Interface to use for the Identity API endpoint. Valid values are "public",
 753# "internal" (default) or "admin". (string value)
 754#interface = internal
 755
 756# Do not handle authorization requests within the middleware, but delegate the
 757# authorization decision to downstream WSGI components. (boolean value)
 758#delay_auth_decision = false
 759
 760# Request timeout value for communicating with Identity API server. (integer
 761# value)
 762#http_connect_timeout = <None>
 763
 764# How many times are we trying to reconnect when communicating with Identity
 765# API Server. (integer value)
 766#http_request_max_retries = 3
 767
 768# Request environment key where the Swift cache object is stored. When
 769# auth_token middleware is deployed with a Swift cache, use this option to have
 770# the middleware share a caching backend with swift. Otherwise, use the
 771# ``memcached_servers`` option instead. (string value)
 772#cache = <None>
 773
 774# Required if identity server requires client certificate (string value)
 775#certfile = <None>
 776
 777# Required if identity server requires client certificate (string value)
 778#keyfile = <None>
 779
 780# A PEM encoded Certificate Authority to use when verifying HTTPs connections.
 781# Defaults to system CAs. (string value)
 782#cafile = <None>
 783
 784# Verify HTTPS connections. (boolean value)
 785#insecure = false
 786
 787# The region in which the identity server can be found. (string value)
 788#region_name = <None>
 789
 790# Optionally specify a list of memcached server(s) to use for caching. If left
 791# undefined, tokens will instead be cached in-process. (list value)
 792# Deprecated group/name - [keystone_authtoken]/memcache_servers
 793#memcached_servers = <None>
 794
 795# In order to prevent excessive effort spent validating tokens, the middleware
 796# caches previously-seen tokens for a configurable duration (in seconds). Set
 797# to -1 to disable caching completely. (integer value)
 798#token_cache_time = 300
 799
 800# (Optional) If defined, indicate whether token data should be authenticated or
 801# authenticated and encrypted. If MAC, token data is authenticated (with HMAC)
 802# in the cache. If ENCRYPT, token data is encrypted and authenticated in the
 803# cache. If the value is not one of these options or empty, auth_token will
 804# raise an exception on initialization. (string value)
 805# Possible values:
 806# None - <No description provided>
 807# MAC - <No description provided>
 808# ENCRYPT - <No description provided>
 809#memcache_security_strategy = None
 810
 811# (Optional, mandatory if memcache_security_strategy is defined) This string is
 812# used for key derivation. (string value)
 813#memcache_secret_key = <None>
 814
 815# (Optional) Number of seconds memcached server is considered dead before it is
 816# tried again. (integer value)
 817#memcache_pool_dead_retry = 300
 818
 819# (Optional) Maximum total number of open connections to every memcached
 820# server. (integer value)
 821#memcache_pool_maxsize = 10
 822
 823# (Optional) Socket timeout in seconds for communicating with a memcached
 824# server. (integer value)
 825#memcache_pool_socket_timeout = 3
 826
 827# (Optional) Number of seconds a connection to memcached is held unused in the
 828# pool before it is closed. (integer value)
 829#memcache_pool_unused_timeout = 60
 830
 831# (Optional) Number of seconds that an operation will wait to get a memcached
 832# client connection from the pool. (integer value)
 833#memcache_pool_conn_get_timeout = 10
 834
 835# (Optional) Use the advanced (eventlet safe) memcached client pool. (boolean
 836# value)
 837#memcache_use_advanced_pool = true
 838
 839# (Optional) Indicate whether to set the X-Service-Catalog header. If False,
 840# middleware will not ask for service catalog on token validation and will not
 841# set the X-Service-Catalog header. (boolean value)
 842#include_service_catalog = true
 843
 844# Used to control the use and type of token binding. Can be set to: "disabled"
 845# to not check token binding. "permissive" (default) to validate binding
 846# information if the bind type is of a form known to the server and ignore it
 847# if not. "strict" like "permissive" but if the bind type is unknown the token
 848# will be rejected. "required" any form of token binding is needed to be
 849# allowed. Finally the name of a binding method that must be present in tokens.
 850# (string value)
 851#enforce_token_bind = permissive
 852
 853# A choice of roles that must be present in a service token. Service tokens are
 854# allowed to request that an expired token can be used and so this check should
 855# tightly control that only actual services should be sending this token. Roles
 856# here are applied as an ANY check so any role in this list must be present.
 857# For backwards compatibility reasons this currently only affects the
 858# allow_expired check. (list value)
 859#service_token_roles = service
 860
 861# For backwards compatibility reasons we must let valid service tokens pass
 862# that don't pass the service_token_roles check as valid. Setting this true
 863# will become the default in a future release and should be enabled if
 864# possible. (boolean value)
 865#service_token_roles_required = false
 866
 867# The name or type of the service as it appears in the service catalog. This is
 868# used to validate tokens that have restricted access rules. (string value)
 869#service_type = <None>
 870
 871# Authentication type to load (string value)
 872# Deprecated group/name - [keystone_authtoken]/auth_plugin
 873#auth_type = <None>
 874
 875# Config Section from which to load plugin specific options (string value)
 876#auth_section = <None>
 877
 878
 879[manila]
 880
 881#
 882# From sahara.config
 883#
 884
 885# Version of the manila API to use. (string value)
 886#api_version = 1
 887
 888# Allow to perform insecure SSL requests to manila. (boolean value)
 889#api_insecure = true
 890
 891# Location of ca certificates file to use for manila client requests. (string
 892# value)
 893#ca_file = <None>
 894
 895
 896[neutron]
 897
 898#
 899# From sahara.config
 900#
 901
 902# Allow to perform insecure SSL requests to neutron. (boolean value)
 903#api_insecure = false
 904
 905# Location of ca certificates file to use for neutron client requests. (string
 906# value)
 907#ca_file = <None>
 908
 909# Endpoint type for neutron client requests (string value)
 910#endpoint_type = internalURL
 911
 912
 913[nova]
 914
 915#
 916# From sahara.config
 917#
 918
 919# Allow to perform insecure SSL requests to nova. (boolean value)
 920#api_insecure = false
 921
 922# Location of ca certificates file to use for nova client requests. (string
 923# value)
 924#ca_file = <None>
 925
 926# Endpoint type for nova client requests (string value)
 927#endpoint_type = internalURL
 928
 929
 930[object_store_access]
 931
 932#
 933# From sahara.config
 934#
 935
 936# Location of ca certificate file to use for identity client requests via
 937# public endpoint (string value)
 938#public_identity_ca_file = <None>
 939
 940# Location of ca certificate file to use for object-store client requests via
 941# public endpoint (string value)
 942#public_object_store_ca_file = <None>
 943
 944
 945[oslo_concurrency]
 946
 947#
 948# From oslo.concurrency
 949#
 950
 951# Enables or disables inter-process locks. (boolean value)
 952#disable_process_locking = false
 953
 954# Directory to use for lock files.  For security, the specified directory
 955# should only be writable by the user running the processes that need locking.
 956# Defaults to environment variable OSLO_LOCK_PATH. If external locks are used,
 957# a lock path must be set. (string value)
 958#lock_path = <None>
 959
 960
 961[oslo_messaging_amqp]
 962
 963#
 964# From oslo.messaging
 965#
 966
 967# Name for the AMQP container. must be globally unique. Defaults to a generated
 968# UUID (string value)
 969#container_name = <None>
 970
 971# Timeout for inactive connections (in seconds) (integer value)
 972#idle_timeout = 0
 973
 974# Debug: dump AMQP frames to stdout (boolean value)
 975#trace = false
 976
 977# Attempt to connect via SSL. If no other ssl-related parameters are given, it
 978# will use the system's CA-bundle to verify the server's certificate. (boolean
 979# value)
 980#ssl = false
 981
 982# CA certificate PEM file used to verify the server's certificate (string
 983# value)
 984#ssl_ca_file =
 985
 986# Self-identifying certificate PEM file for client authentication (string
 987# value)
 988#ssl_cert_file =
 989
 990# Private key PEM file used to sign ssl_cert_file certificate (optional)
 991# (string value)
 992#ssl_key_file =
 993
 994# Password for decrypting ssl_key_file (if encrypted) (string value)
 995#ssl_key_password = <None>
 996
 997# By default SSL checks that the name in the server's certificate matches the
 998# hostname in the transport_url. In some configurations it may be preferable to
 999# use the virtual hostname instead, for example if the server uses the Server
1000# Name Indication TLS extension (rfc6066) to provide a certificate per virtual
1001# host. Set ssl_verify_vhost to True if the server's SSL certificate uses the
1002# virtual host name instead of the DNS name. (boolean value)
1003#ssl_verify_vhost = false
1004
1005# Space separated list of acceptable SASL mechanisms (string value)
1006#sasl_mechanisms =
1007
1008# Path to directory that contains the SASL configuration (string value)
1009#sasl_config_dir =
1010
1011# Name of configuration file (without .conf suffix) (string value)
1012#sasl_config_name =
1013
1014# SASL realm to use if no realm present in username (string value)
1015#sasl_default_realm =
1016
1017# Seconds to pause before attempting to re-connect. (integer value)
1018# Minimum value: 1
1019#connection_retry_interval = 1
1020
1021# Increase the connection_retry_interval by this many seconds after each
1022# unsuccessful failover attempt. (integer value)
1023# Minimum value: 0
1024#connection_retry_backoff = 2
1025
1026# Maximum limit for connection_retry_interval + connection_retry_backoff
1027# (integer value)
1028# Minimum value: 1
1029#connection_retry_interval_max = 30
1030
1031# Time to pause between re-connecting an AMQP 1.0 link that failed due to a
1032# recoverable error. (integer value)
1033# Minimum value: 1
1034#link_retry_delay = 10
1035
1036# The maximum number of attempts to re-send a reply message which failed due to
1037# a recoverable error. (integer value)
1038# Minimum value: -1
1039#default_reply_retry = 0
1040
1041# The deadline for an rpc reply message delivery. (integer value)
1042# Minimum value: 5
1043#default_reply_timeout = 30
1044
1045# The deadline for an rpc cast or call message delivery. Only used when caller
1046# does not provide a timeout expiry. (integer value)
1047# Minimum value: 5
1048#default_send_timeout = 30
1049
1050# The deadline for a sent notification message delivery. Only used when caller
1051# does not provide a timeout expiry. (integer value)
1052# Minimum value: 5
1053#default_notify_timeout = 30
1054
1055# The duration to schedule a purge of idle sender links. Detach link after
1056# expiry. (integer value)
1057# Minimum value: 1
1058#default_sender_link_timeout = 600
1059
1060# Indicates the addressing mode used by the driver.
1061# Permitted values:
1062# 'legacy'   - use legacy non-routable addressing
1063# 'routable' - use routable addresses
1064# 'dynamic'  - use legacy addresses if the message bus does not support routing
1065# otherwise use routable addressing (string value)
1066#addressing_mode = dynamic
1067
1068# Enable virtual host support for those message buses that do not natively
1069# support virtual hosting (such as qpidd). When set to true the virtual host
1070# name will be added to all message bus addresses, effectively creating a
1071# private 'subnet' per virtual host. Set to False if the message bus supports
1072# virtual hosting using the 'hostname' field in the AMQP 1.0 Open performative
1073# as the name of the virtual host. (boolean value)
1074#pseudo_vhost = true
1075
1076# address prefix used when sending to a specific server (string value)
1077#server_request_prefix = exclusive
1078
1079# address prefix used when broadcasting to all servers (string value)
1080#broadcast_prefix = broadcast
1081
1082# address prefix when sending to any server in group (string value)
1083#group_request_prefix = unicast
1084
1085# Address prefix for all generated RPC addresses (string value)
1086#rpc_address_prefix = openstack.org/om/rpc
1087
1088# Address prefix for all generated Notification addresses (string value)
1089#notify_address_prefix = openstack.org/om/notify
1090
1091# Appended to the address prefix when sending a fanout message. Used by the
1092# message bus to identify fanout messages. (string value)
1093#multicast_address = multicast
1094
1095# Appended to the address prefix when sending to a particular RPC/Notification
1096# server. Used by the message bus to identify messages sent to a single
1097# destination. (string value)
1098#unicast_address = unicast
1099
1100# Appended to the address prefix when sending to a group of consumers. Used by
1101# the message bus to identify messages that should be delivered in a round-
1102# robin fashion across consumers. (string value)
1103#anycast_address = anycast
1104
1105# Exchange name used in notification addresses.
1106# Exchange name resolution precedence:
1107# Target.exchange if set
1108# else default_notification_exchange if set
1109# else control_exchange if set
1110# else 'notify' (string value)
1111#default_notification_exchange = <None>
1112
1113# Exchange name used in RPC addresses.
1114# Exchange name resolution precedence:
1115# Target.exchange if set
1116# else default_rpc_exchange if set
1117# else control_exchange if set
1118# else 'rpc' (string value)
1119#default_rpc_exchange = <None>
1120
1121# Window size for incoming RPC Reply messages. (integer value)
1122# Minimum value: 1
1123#reply_link_credit = 200
1124
1125# Window size for incoming RPC Request messages (integer value)
1126# Minimum value: 1
1127#rpc_server_credit = 100
1128
1129# Window size for incoming Notification messages (integer value)
1130# Minimum value: 1
1131#notify_server_credit = 100
1132
1133# Send messages of this type pre-settled.
1134# Pre-settled messages will not receive acknowledgement
1135# from the peer. Note well: pre-settled messages may be
1136# silently discarded if the delivery fails.
1137# Permitted values:
1138# 'rpc-call' - send RPC Calls pre-settled
1139# 'rpc-reply'- send RPC Replies pre-settled
1140# 'rpc-cast' - Send RPC Casts pre-settled
1141# 'notify'   - Send Notifications pre-settled
1142#  (multi valued)
1143#pre_settled = rpc-cast
1144#pre_settled = rpc-reply
1145
1146
1147[oslo_messaging_kafka]
1148
1149#
1150# From oslo.messaging
1151#
1152
1153# Max fetch bytes of Kafka consumer (integer value)
1154#kafka_max_fetch_bytes = 1048576
1155
1156# Default timeout(s) for Kafka consumers (floating point value)
1157#kafka_consumer_timeout = 1.0
1158
1159# DEPRECATED: Pool Size for Kafka Consumers (integer value)
1160# This option is deprecated for removal.
1161# Its value may be silently ignored in the future.
1162# Reason: Driver no longer uses connection pool.
1163#pool_size = 10
1164
1165# DEPRECATED: The pool size limit for connections expiration policy (integer
1166# value)
1167# This option is deprecated for removal.
1168# Its value may be silently ignored in the future.
1169# Reason: Driver no longer uses connection pool.
1170#conn_pool_min_size = 2
1171
1172# DEPRECATED: The time-to-live in sec of idle connections in the pool (integer
1173# value)
1174# This option is deprecated for removal.
1175# Its value may be silently ignored in the future.
1176# Reason: Driver no longer uses connection pool.
1177#conn_pool_ttl = 1200
1178
1179# Group id for Kafka consumer. Consumers in one group will coordinate message
1180# consumption (string value)
1181#consumer_group = oslo_messaging_consumer
1182
1183# Upper bound on the delay for KafkaProducer batching in seconds (floating
1184# point value)
1185#producer_batch_timeout = 0.0
1186
1187# Size of batch for the producer async send (integer value)
1188#producer_batch_size = 16384
1189
1190# The compression codec for all data generated by the producer. If not set,
1191# compression will not be used. Note that the allowed values of this depend on
1192# the kafka version (string value)
1193# Possible values:
1194# none - <No description provided>
1195# gzip - <No description provided>
1196# snappy - <No description provided>
1197# lz4 - <No description provided>
1198# zstd - <No description provided>
1199#compression_codec = none
1200
1201# Enable asynchronous consumer commits (boolean value)
1202#enable_auto_commit = false
1203
1204# The maximum number of records returned in a poll call (integer value)
1205#max_poll_records = 500
1206
1207# Protocol used to communicate with brokers (string value)
1208# Possible values:
1209# PLAINTEXT - <No description provided>
1210# SASL_PLAINTEXT - <No description provided>
1211# SSL - <No description provided>
1212# SASL_SSL - <No description provided>
1213#security_protocol = PLAINTEXT
1214
1215# Mechanism when security protocol is SASL (string value)
1216#sasl_mechanism = PLAIN
1217
1218# CA certificate PEM file used to verify the server certificate (string value)
1219#ssl_cafile =
1220
1221# Client certificate PEM file used for authentication. (string value)
1222#ssl_client_cert_file =
1223
1224# Client key PEM file used for authentication. (string value)
1225#ssl_client_key_file =
1226
1227# Client key password file used for authentication. (string value)
1228#ssl_client_key_password =
1229
1230
1231[oslo_messaging_notifications]
1232
1233#
1234# From oslo.messaging
1235#
1236
1237# The Drivers(s) to handle sending notifications. Possible values are
1238# messaging, messagingv2, routing, log, test, noop (multi valued)
1239# Deprecated group/name - [DEFAULT]/notification_driver
1240#driver =
1241
1242# A URL representing the messaging driver to use for notifications. If not set,
1243# we fall back to the same configuration used for RPC. (string value)
1244# Deprecated group/name - [DEFAULT]/notification_transport_url
1245#transport_url = <None>
1246
1247# AMQP topic used for OpenStack notifications. (list value)
1248# Deprecated group/name - [rpc_notifier2]/topics
1249# Deprecated group/name - [DEFAULT]/notification_topics
1250#topics = notifications
1251
1252# The maximum number of attempts to re-send a notification message which failed
1253# to be delivered due to a recoverable error. 0 - No retry, -1 - indefinite
1254# (integer value)
1255#retry = -1
1256
1257#
1258# From sahara.config
1259#
1260
1261# Notification level for outgoing notifications (string value)
1262# Deprecated group/name - [DEFAULT]/notification_level
1263#level = INFO
1264
1265# Identifier of the publisher (string value)
1266# Deprecated group/name - [DEFAULT]/notification_publisher_id
1267#publisher_id = <None>
1268
1269
1270[oslo_messaging_rabbit]
1271
1272#
1273# From oslo.messaging
1274#
1275
1276# Use durable queues in AMQP. If rabbit_quorum_queue is enabled, queues will be
1277# durable and this value will be ignored. (boolean value)
1278#amqp_durable_queues = false
1279
1280# Auto-delete queues in AMQP. (boolean value)
1281#amqp_auto_delete = false
1282
1283# Connect over SSL. (boolean value)
1284# Deprecated group/name - [oslo_messaging_rabbit]/rabbit_use_ssl
1285#ssl = false
1286
1287# SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
1288# SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
1289# distributions. (string value)
1290# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_version
1291#ssl_version =
1292
1293# SSL key file (valid only if SSL enabled). (string value)
1294# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_keyfile
1295#ssl_key_file =
1296
1297# SSL cert file (valid only if SSL enabled). (string value)
1298# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_certfile
1299#ssl_cert_file =
1300
1301# SSL certification authority file (valid only if SSL enabled). (string value)
1302# Deprecated group/name - [oslo_messaging_rabbit]/kombu_ssl_ca_certs
1303#ssl_ca_file =
1304
1305# Global toggle for enforcing the OpenSSL FIPS mode. This feature requires
1306# Python support. This is available in Python 3.9 in all environments and may
1307# have been backported to older Python versions on select environments. If the
1308# Python executable used does not support OpenSSL FIPS mode, an exception will
1309# be raised. (boolean value)
1310#ssl_enforce_fips_mode = false
1311
1312# Run the health check heartbeat thread through a native python thread by
1313# default. If this option is equal to False then the health check heartbeat
1314# will inherit the execution model from the parent process. For example if the
1315# parent process has monkey patched the stdlib by using eventlet/greenlet then
1316# the heartbeat will be run through a green thread. This option should be set
1317# to True only for the wsgi services. (boolean value)
1318#heartbeat_in_pthread = false
1319
1320# How long to wait (in seconds) before reconnecting in response to an AMQP
1321# consumer cancel notification. (floating point value)
1322# Minimum value: 0.0
1323# Maximum value: 4.5
1324#kombu_reconnect_delay = 1.0
1325
1326# EXPERIMENTAL: Possible values are: gzip, bz2. If not set compression will not
1327# be used. This option may not be available in future versions. (string value)
1328#kombu_compression = <None>
1329
1330# How long to wait a missing client before abandoning to send it its replies.
1331# This value should not be longer than rpc_response_timeout. (integer value)
1332# Deprecated group/name - [oslo_messaging_rabbit]/kombu_reconnect_timeout
1333#kombu_missing_consumer_retry_timeout = 60
1334
1335# Determines how the next RabbitMQ node is chosen in case the one we are
1336# currently connected to becomes unavailable. Takes effect only if more than
1337# one RabbitMQ node is provided in config. (string value)
1338# Possible values:
1339# round-robin - <No description provided>
1340# shuffle - <No description provided>
1341#kombu_failover_strategy = round-robin
1342
1343# The RabbitMQ login method. (string value)
1344# Possible values:
1345# PLAIN - <No description provided>
1346# AMQPLAIN - <No description provided>
1347# EXTERNAL - <No description provided>
1348# RABBIT-CR-DEMO - <No description provided>
1349#rabbit_login_method = AMQPLAIN
1350
1351# How frequently to retry connecting with RabbitMQ. (integer value)
1352#rabbit_retry_interval = 1
1353
1354# How long to backoff for between retries when connecting to RabbitMQ. (integer
1355# value)
1356#rabbit_retry_backoff = 2
1357
1358# Maximum interval of RabbitMQ connection retries. Default is 30 seconds.
1359# (integer value)
1360#rabbit_interval_max = 30
1361
1362# Try to use HA queues in RabbitMQ (x-ha-policy: all). If you change this
1363# option, you must wipe the RabbitMQ database. In RabbitMQ 3.0, queue mirroring
1364# is no longer controlled by the x-ha-policy argument when declaring a queue.
1365# If you just want to make sure that all queues (except those with auto-
1366# generated names) are mirrored across all nodes, run: "rabbitmqctl set_policy
1367# HA '^(?!amq\.).*' '{"ha-mode": "all"}' " (boolean value)
1368#rabbit_ha_queues = false
1369
1370# Use quorum queues in RabbitMQ (x-queue-type: quorum). The quorum queue is a
1371# modern queue type for RabbitMQ implementing a durable, replicated FIFO queue
1372# based on the Raft consensus algorithm. It is available as of RabbitMQ 3.8.0.
1373# If set this option will conflict with the HA queues (``rabbit_ha_queues``)
1374# aka mirrored queues, in other words the HA queues should be disabled, quorum
1375# queues durable by default so the amqp_durable_queues opion is ignored when
1376# this option enabled. (boolean value)
1377#rabbit_quorum_queue = false
1378
1379# Each time a message is redelivered to a consumer, a counter is incremented.
1380# Once the redelivery count exceeds the delivery limit the message gets dropped
1381# or dead-lettered (if a DLX exchange has been configured) Used only when
1382# rabbit_quorum_queue is enabled, Default 0 which means dont set a limit.
1383# (integer value)
1384#rabbit_quorum_delivery_limit = 0
1385
1386# By default all messages are maintained in memory if a quorum queue grows in
1387# length it can put memory pressure on a cluster. This option can limit the
1388# number of messages in the quorum queue. Used only when rabbit_quorum_queue is
1389# enabled, Default 0 which means dont set a limit. (integer value)
1390# Deprecated group/name - [oslo_messaging_rabbit]/rabbit_quroum_max_memory_length
1391#rabbit_quorum_max_memory_length = 0
1392
1393# By default all messages are maintained in memory if a quorum queue grows in
1394# length it can put memory pressure on a cluster. This option can limit the
1395# number of memory bytes used by the quorum queue. Used only when
1396# rabbit_quorum_queue is enabled, Default 0 which means dont set a limit.
1397# (integer value)
1398# Deprecated group/name - [oslo_messaging_rabbit]/rabbit_quroum_max_memory_bytes
1399#rabbit_quorum_max_memory_bytes = 0
1400
1401# Positive integer representing duration in seconds for queue TTL (x-expires).
1402# Queues which are unused for the duration of the TTL are automatically
1403# deleted. The parameter affects only reply and fanout queues. (integer value)
1404# Minimum value: 1
1405#rabbit_transient_queues_ttl = 1800
1406
1407# Specifies the number of messages to prefetch. Setting to zero allows
1408# unlimited messages. (integer value)
1409#rabbit_qos_prefetch_count = 0
1410
1411# Number of seconds after which the Rabbit broker is considered down if
1412# heartbeat's keep-alive fails (0 disables heartbeat). (integer value)
1413#heartbeat_timeout_threshold = 60
1414
1415# How often times during the heartbeat_timeout_threshold we check the
1416# heartbeat. (integer value)
1417#heartbeat_rate = 2
1418
1419# DEPRECATED: (DEPRECATED) Enable/Disable the RabbitMQ mandatory flag for
1420# direct send. The direct send is used as reply, so the MessageUndeliverable
1421# exception is raised in case the client queue does not
1422# exist.MessageUndeliverable exception will be used to loop for a timeout to
1423# lets a chance to sender to recover.This flag is deprecated and it will not be
1424# possible to deactivate this functionality anymore (boolean value)
1425# This option is deprecated for removal.
1426# Its value may be silently ignored in the future.
1427# Reason: Mandatory flag no longer deactivable.
1428#direct_mandatory_flag = true
1429
1430# Enable x-cancel-on-ha-failover flag so that rabbitmq server will cancel and
1431# notify consumerswhen queue is down (boolean value)
1432#enable_cancel_on_failover = false
1433
1434
1435[oslo_middleware]
1436
1437#
1438# From oslo.middleware.http_proxy_to_wsgi
1439#
1440
1441# Whether the application is behind a proxy or not. This determines if the
1442# middleware should parse the headers or not. (boolean value)
1443#enable_proxy_headers_parsing = false
1444
1445
1446[oslo_policy]
1447
1448#
1449# From oslo.policy
1450#
1451
1452# This option controls whether or not to enforce scope when evaluating
1453# policies. If ``True``, the scope of the token used in the request is compared
1454# to the ``scope_types`` of the policy being enforced. If the scopes do not
1455# match, an ``InvalidScope`` exception will be raised. If ``False``, a message
1456# will be logged informing operators that policies are being invoked with
1457# mismatching scope. (boolean value)
1458#enforce_scope = false
1459
1460# This option controls whether or not to use old deprecated defaults when
1461# evaluating policies. If ``True``, the old deprecated defaults are not going
1462# to be evaluated. This means if any existing token is allowed for old defaults
1463# but is disallowed for new defaults, it will be disallowed. It is encouraged
1464# to enable this flag along with the ``enforce_scope`` flag so that you can get
1465# the benefits of new defaults and ``scope_type`` together. If ``False``, the
1466# deprecated policy check string is logically OR'd with the new policy check
1467# string, allowing for a graceful upgrade experience between releases with new
1468# policies, which is the default behavior. (boolean value)
1469#enforce_new_defaults = false
1470
1471# The relative or absolute path of a file that maps roles to permissions for a
1472# given service. Relative paths must be specified in relation to the
1473# configuration file setting this option. (string value)
1474#policy_file = policy.yaml
1475
1476# Default rule. Enforced when a requested rule is not found. (string value)
1477#policy_default_rule = default
1478
1479# Directories where policy configuration files are stored. They can be relative
1480# to any directory in the search path defined by the config_dir option, or
1481# absolute paths. The file defined by policy_file must exist for these
1482# directories to be searched.  Missing or empty directories are ignored. (multi
1483# valued)
1484#policy_dirs = policy.d
1485
1486# Content Type to send and receive data for REST based policy check (string
1487# value)
1488# Possible values:
1489# application/x-www-form-urlencoded - <No description provided>
1490# application/json - <No description provided>
1491#remote_content_type = application/x-www-form-urlencoded
1492
1493# server identity verification for REST based policy check (boolean value)
1494#remote_ssl_verify_server_crt = false
1495
1496# Absolute path to ca cert file for REST based policy check (string value)
1497#remote_ssl_ca_crt_file = <None>
1498
1499# Absolute path to client cert for REST based policy check (string value)
1500#remote_ssl_client_crt_file = <None>
1501
1502# Absolute path client key file REST based policy check (string value)
1503#remote_ssl_client_key_file = <None>
1504
1505
1506[retries]
1507
1508#
1509# From sahara.config
1510#
1511
1512# Number of times to retry the request to client before failing (integer value)
1513#retries_number = 5
1514
1515# Time between the retries to client (in seconds). (integer value)
1516#retry_after = 10
1517
1518
1519[ssl]
1520
1521#
1522# From oslo.service.sslutils
1523#
1524
1525# CA certificate file to use to verify connecting clients. (string value)
1526# Deprecated group/name - [DEFAULT]/ssl_ca_file
1527#ca_file = <None>
1528
1529# Certificate file to use when starting the server securely. (string value)
1530# Deprecated group/name - [DEFAULT]/ssl_cert_file
1531#cert_file = <None>
1532
1533# Private key file to use when starting the server securely. (string value)
1534# Deprecated group/name - [DEFAULT]/ssl_key_file
1535#key_file = <None>
1536
1537# SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
1538# SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
1539# distributions. (string value)
1540#version = <None>
1541
1542# Sets the list of available ciphers. value should be a string in the OpenSSL
1543# cipher list format. (string value)
1544#ciphers = <None>
1545
1546
1547[swift]
1548
1549#
1550# From sahara.config
1551#
1552
1553# Allow to perform insecure SSL requests to swift. (boolean value)
1554#api_insecure = false
1555
1556# Location of ca certificates file to use for swift client requests. (string
1557# value)
1558#ca_file = <None>
1559
1560# Endpoint type for swift client requests (string value)
1561#endpoint_type = internalURL
1562
1563
1564[timeouts]
1565
1566#
1567# From sahara.config
1568#
1569
1570# Assign IPs timeout, in seconds (integer value)
1571#ips_assign_timeout = 10800
1572
1573# Wait for instance accessibility, in seconds (integer value)
1574#wait_until_accessible = 10800
1575
1576# Wait for instances to be deleted, in seconds (integer value)
1577#delete_instances_timeout = 10800
1578
1579# Timeout for detaching volumes from instance, in seconds (integer value)
1580#detach_volume_timeout = 300
1581
1582
1583[trustee]
1584
1585#
1586# From sahara.config
1587#
1588
1589# Username for trusts creation (string value)
1590#username = <None>
1591
1592# Password for trusts creation (string value)
1593#password = <None>
1594
1595# Project name for trusts creation (string value)
1596#project_name = <None>
1597
1598# User domain name for trusts creation (string value)
1599#user_domain_name = Default
1600
1601# Project domain name for trusts creation (string value)
1602#project_domain_name = Default
1603
1604# Auth url for trusts creation (string value)
1605#auth_url = <None>