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