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