blob: 98727abbcf8bff091d4b5869393a251fda5b18b0 [file] [log] [blame]
rdudyalab086cf32016-08-11 00:07:45 -04001[DEFAULT]
2rpc_backend = rabbit
3auth_strategy = keystone
Srikanth Vavilapalli0d483e52017-01-31 05:21:08 +00004debug = False
rdudyalab086cf32016-08-11 00:07:45 -04005
6#
7# From oslo.log
8#
9
10# If set to true, the logging level will be set to DEBUG instead of the default
11# INFO level. (boolean value)
12#debug = false
13
14# If set to false, the logging level will be set to WARNING instead of the
15# default INFO level. (boolean value)
16# This option is deprecated for removal.
17# Its value may be silently ignored in the future.
18#verbose = true
19
20# The name of a logging configuration file. This file is appended to any
21# existing logging configuration files. For details about logging configuration
22# files, see the Python logging module documentation. Note that when logging
23# configuration files are used then all logging configuration is set in the
24# configuration file and other logging configuration options are ignored (for
25# example, logging_context_format_string). (string value)
26# Deprecated group/name - [DEFAULT]/log_config
27#log_config_append = <None>
28
29# Defines the format string for %%(asctime)s in log records. Default:
30# %(default)s . This option is ignored if log_config_append is set. (string
31# value)
32#log_date_format = %Y-%m-%d %H:%M:%S
33
34# (Optional) Name of log file to send logging output to. If no default is set,
35# logging will go to stderr as defined by use_stderr. This option is ignored if
36# log_config_append is set. (string value)
37# Deprecated group/name - [DEFAULT]/logfile
38#log_file = <None>
39
40# (Optional) The base directory used for relative log_file paths. This option
41# is ignored if log_config_append is set. (string value)
42# Deprecated group/name - [DEFAULT]/logdir
43#log_dir = <None>
44
45# Uses logging handler designed to watch file system. When log file is moved or
46# removed this handler will open a new log file with specified path
47# instantaneously. It makes sense only if log_file option is specified and
48# Linux platform is used. This option is ignored if log_config_append is set.
49# (boolean value)
50#watch_log_file = false
51
52# Use syslog for logging. Existing syslog format is DEPRECATED and will be
53# changed later to honor RFC5424. This option is ignored if log_config_append
54# is set. (boolean value)
55#use_syslog = false
56
57# Syslog facility to receive log lines. This option is ignored if
58# log_config_append is set. (string value)
59#syslog_log_facility = LOG_USER
60
61# Log output to standard error. This option is ignored if log_config_append is
62# set. (boolean value)
63#use_stderr = true
64
65# Format string to use for log messages with context. (string value)
66#logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
67
68# Format string to use for log messages when context is undefined. (string
69# value)
70#logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
71
72# Additional data to append to log message when logging level for the message
73# is DEBUG. (string value)
74#logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
75
76# Prefix each line of exception output with this format. (string value)
77#logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
78
79# Defines the format string for %(user_identity)s that is used in
80# logging_context_format_string. (string value)
81#logging_user_identity_format = %(user)s %(tenant)s %(domain)s %(user_domain)s %(project_domain)s
82
83# List of package logging levels in logger=LEVEL pairs. This option is ignored
84# if log_config_append is set. (list value)
85#default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN,keystoneauth=WARN,oslo.cache=INFO,dogpile.core.dogpile=INFO
86
87# Enables or disables publication of error events. (boolean value)
88#publish_errors = false
89
90# The format for an instance that is passed with the log message. (string
91# value)
92#instance_format = "[instance: %(uuid)s] "
93
94# The format for an instance UUID that is passed with the log message. (string
95# value)
96#instance_uuid_format = "[instance: %(uuid)s] "
97
98# Enables or disables fatal status of deprecations. (boolean value)
99#fatal_deprecations = false
100
101#
102# From oslo.messaging
103#
104
105# Size of RPC connection pool. (integer value)
106# Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
107#rpc_conn_pool_size = 30
108
109# ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
110# The "host" option should point or resolve to this address. (string value)
111#rpc_zmq_bind_address = *
112
113# MatchMaker driver. (string value)
114# Allowed values: redis, dummy
115#rpc_zmq_matchmaker = redis
116
117# Type of concurrency used. Either "native" or "eventlet" (string value)
118#rpc_zmq_concurrency = eventlet
119
120# Number of ZeroMQ contexts, defaults to 1. (integer value)
121#rpc_zmq_contexts = 1
122
123# Maximum number of ingress messages to locally buffer per topic. Default is
124# unlimited. (integer value)
125#rpc_zmq_topic_backlog = <None>
126
127# Directory for holding IPC sockets. (string value)
128#rpc_zmq_ipc_dir = /var/run/openstack
129
130# Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
131# "host" option, if running Nova. (string value)
132#rpc_zmq_host = localhost
133
134# Seconds to wait before a cast expires (TTL). The default value of -1
135# specifies an infinite linger period. The value of 0 specifies no linger
136# period. Pending messages shall be discarded immediately when the socket is
137# closed. Only supported by impl_zmq. (integer value)
138#rpc_cast_timeout = -1
139
140# The default number of seconds that poll should wait. Poll raises timeout
141# exception when timeout expired. (integer value)
142#rpc_poll_timeout = 1
143
144# Expiration timeout in seconds of a name service record about existing target
145# ( < 0 means no timeout). (integer value)
146#zmq_target_expire = 120
147
148# Use PUB/SUB pattern for fanout methods. PUB/SUB always uses proxy. (boolean
149# value)
150#use_pub_sub = true
151
152# Minimal port number for random ports range. (port value)
153# Minimum value: 0
154# Maximum value: 65535
155#rpc_zmq_min_port = 49152
156
157# Maximal port number for random ports range. (integer value)
158# Minimum value: 1
159# Maximum value: 65536
160#rpc_zmq_max_port = 65536
161
162# Number of retries to find free port number before fail with ZMQBindError.
163# (integer value)
164#rpc_zmq_bind_port_retries = 100
165
166# Size of executor thread pool. (integer value)
167# Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
168#executor_thread_pool_size = 64
169
170# Seconds to wait for a response from a call. (integer value)
171#rpc_response_timeout = 60
172
173# A URL representing the messaging driver to use and its full configuration. If
174# not set, we fall back to the rpc_backend option and driver specific
175# configuration. (string value)
176#transport_url = <None>
177
178# The messaging driver to use, defaults to rabbit. Other drivers include amqp
179# and zmq. (string value)
180#rpc_backend = rabbit
181
182# The default exchange under which topics are scoped. May be overridden by an
183# exchange name specified in the transport_url option. (string value)
184#control_exchange = openstack
185
186#
187# From oslo.service.service
188#
189
190# Enable eventlet backdoor. Acceptable values are 0, <port>, and
191# <start>:<end>, where 0 results in listening on a random tcp port number;
192# <port> results in listening on the specified port number (and not enabling
193# backdoor if that port is in use); and <start>:<end> results in listening on
194# the smallest unused port number within the specified range of port numbers.
195# The chosen port is displayed in the service's log file. (string value)
196#backdoor_port = <None>
197
198# Enables or disables logging values of all registered options when starting a
199# service (at DEBUG level). (boolean value)
200#log_options = true
201
202# Specify a timeout after which a gracefully shutdown server will exit. Zero
203# value means endless wait. (integer value)
204#graceful_shutdown_timeout = 60
205
206
207[cors]
208
209#
210# From oslo.middleware.cors
211#
212
213# Indicate whether this resource may be shared with the domain received in the
214# requests "origin" header. (list value)
215#allowed_origin = <None>
216
217# Indicate that the actual request can include user credentials (boolean value)
218#allow_credentials = true
219
220# Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
221# Headers. (list value)
222#expose_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
223
224# Maximum cache age of CORS preflight requests. (integer value)
225#max_age = 3600
226
227# Indicate which methods can be used during the actual request. (list value)
228#allow_methods = GET,POST,PUT,DELETE,OPTIONS
229
230# Indicate which header field names may be used during the actual request.
231# (list value)
232#allow_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
233
234
235[cors.subdomain]
236
237#
238# From oslo.middleware.cors
239#
240
241# Indicate whether this resource may be shared with the domain received in the
242# requests "origin" header. (list value)
243#allowed_origin = <None>
244
245# Indicate that the actual request can include user credentials (boolean value)
246#allow_credentials = true
247
248# Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
249# Headers. (list value)
250#expose_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
251
252# Maximum cache age of CORS preflight requests. (integer value)
253#max_age = 3600
254
255# Indicate which methods can be used during the actual request. (list value)
256#allow_methods = GET,POST,PUT,DELETE,OPTIONS
257
258# Indicate which header field names may be used during the actual request.
259# (list value)
260#allow_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
261
262
263[database]
264#connection = mongodb://ceilometer:password@localhost:27017/ceilometer
265metering_connection = mongodb://localhost:27017/ceilometer
266event_connection = mongodb://localhost:27017/ceilometer
267
268#
269# From oslo.db
270#
271
272# The file name to use with SQLite. (string value)
273# Deprecated group/name - [DEFAULT]/sqlite_db
274#sqlite_db = oslo.sqlite
275
276# If True, SQLite uses synchronous mode. (boolean value)
277# Deprecated group/name - [DEFAULT]/sqlite_synchronous
278#sqlite_synchronous = true
279
280# The back end to use for the database. (string value)
281# Deprecated group/name - [DEFAULT]/db_backend
282#backend = sqlalchemy
283
284# The SQLAlchemy connection string to use to connect to the database. (string
285# value)
286# Deprecated group/name - [DEFAULT]/sql_connection
287# Deprecated group/name - [DATABASE]/sql_connection
288# Deprecated group/name - [sql]/connection
289#connection = <None>
290
291# The SQLAlchemy connection string to use to connect to the slave database.
292# (string value)
293#slave_connection = <None>
294
295# The SQL mode to be used for MySQL sessions. This option, including the
296# default, overrides any server-set SQL mode. To use whatever SQL mode is set
297# by the server configuration, set this to no value. Example: mysql_sql_mode=
298# (string value)
299#mysql_sql_mode = TRADITIONAL
300
301# Timeout before idle SQL connections are reaped. (integer value)
302# Deprecated group/name - [DEFAULT]/sql_idle_timeout
303# Deprecated group/name - [DATABASE]/sql_idle_timeout
304# Deprecated group/name - [sql]/idle_timeout
305#idle_timeout = 3600
306
307# Minimum number of SQL connections to keep open in a pool. (integer value)
308# Deprecated group/name - [DEFAULT]/sql_min_pool_size
309# Deprecated group/name - [DATABASE]/sql_min_pool_size
310#min_pool_size = 1
311
312# Maximum number of SQL connections to keep open in a pool. (integer value)
313# Deprecated group/name - [DEFAULT]/sql_max_pool_size
314# Deprecated group/name - [DATABASE]/sql_max_pool_size
315#max_pool_size = <None>
316
317# Maximum number of database connection retries during startup. Set to -1 to
318# specify an infinite retry count. (integer value)
319# Deprecated group/name - [DEFAULT]/sql_max_retries
320# Deprecated group/name - [DATABASE]/sql_max_retries
321#max_retries = 10
322
323# Interval between retries of opening a SQL connection. (integer value)
324# Deprecated group/name - [DEFAULT]/sql_retry_interval
325# Deprecated group/name - [DATABASE]/reconnect_interval
326#retry_interval = 10
327
328# If set, use this value for max_overflow with SQLAlchemy. (integer value)
329# Deprecated group/name - [DEFAULT]/sql_max_overflow
330# Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
331#max_overflow = 50
332
333# Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
334# value)
335# Deprecated group/name - [DEFAULT]/sql_connection_debug
336#connection_debug = 0
337
338# Add Python stack traces to SQL as comment strings. (boolean value)
339# Deprecated group/name - [DEFAULT]/sql_connection_trace
340#connection_trace = false
341
342# If set, use this value for pool_timeout with SQLAlchemy. (integer value)
343# Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
344#pool_timeout = <None>
345
346# Enable the experimental use of database reconnect on connection lost.
347# (boolean value)
348#use_db_reconnect = false
349
350# Seconds between retries of a database transaction. (integer value)
351#db_retry_interval = 1
352
353# If True, increases the interval between retries of a database operation up to
354# db_max_retry_interval. (boolean value)
355#db_inc_retry_interval = true
356
357# If db_inc_retry_interval is set, the maximum seconds between retries of a
358# database operation. (integer value)
359#db_max_retry_interval = 10
360
361# Maximum retries in case of connection error or deadlock error before error is
362# raised. Set to -1 to specify an infinite retry count. (integer value)
363#db_max_retries = 20
364
365
366[keystone_authtoken]
367auth_uri = http://localhost:5000
368auth_url = http://localhost:35357
369memcached_servers = localhost:11211
370auth_type = password
371project_domain_name = default
372user_domain_name = default
373project_name = service
374username = ceilometer
375password = password
376
377#
378# From keystonemiddleware.auth_token
379#
380
381# Complete public Identity API endpoint. (string value)
382#auth_uri = <None>
383
384# API version of the admin Identity API endpoint. (string value)
385#auth_version = <None>
386
387# Do not handle authorization requests within the middleware, but delegate the
388# authorization decision to downstream WSGI components. (boolean value)
389#delay_auth_decision = false
390
391# Request timeout value for communicating with Identity API server. (integer
392# value)
393#http_connect_timeout = <None>
394
395# How many times are we trying to reconnect when communicating with Identity
396# API Server. (integer value)
397#http_request_max_retries = 3
398
399# Env key for the swift cache. (string value)
400#cache = <None>
401
402# Required if identity server requires client certificate (string value)
403#certfile = <None>
404
405# Required if identity server requires client certificate (string value)
406#keyfile = <None>
407
408# A PEM encoded Certificate Authority to use when verifying HTTPs connections.
409# Defaults to system CAs. (string value)
410#cafile = <None>
411
412# Verify HTTPS connections. (boolean value)
413#insecure = false
414
415# The region in which the identity server can be found. (string value)
416#region_name = <None>
417
418# Directory used to cache files related to PKI tokens. (string value)
419#signing_dir = <None>
420
421# Optionally specify a list of memcached server(s) to use for caching. If left
422# undefined, tokens will instead be cached in-process. (list value)
423# Deprecated group/name - [DEFAULT]/memcache_servers
424#memcached_servers = <None>
425
426# In order to prevent excessive effort spent validating tokens, the middleware
427# caches previously-seen tokens for a configurable duration (in seconds). Set
428# to -1 to disable caching completely. (integer value)
429#token_cache_time = 300
430
431# Determines the frequency at which the list of revoked tokens is retrieved
432# from the Identity service (in seconds). A high number of revocation events
433# combined with a low cache duration may significantly reduce performance.
434# (integer value)
435#revocation_cache_time = 10
436
437# (Optional) If defined, indicate whether token data should be authenticated or
438# authenticated and encrypted. If MAC, token data is authenticated (with HMAC)
439# in the cache. If ENCRYPT, token data is encrypted and authenticated in the
440# cache. If the value is not one of these options or empty, auth_token will
441# raise an exception on initialization. (string value)
442# Allowed values: None, MAC, ENCRYPT
443#memcache_security_strategy = None
444
445# (Optional, mandatory if memcache_security_strategy is defined) This string is
446# used for key derivation. (string value)
447#memcache_secret_key = <None>
448
449# (Optional) Number of seconds memcached server is considered dead before it is
450# tried again. (integer value)
451#memcache_pool_dead_retry = 300
452
453# (Optional) Maximum total number of open connections to every memcached
454# server. (integer value)
455#memcache_pool_maxsize = 10
456
457# (Optional) Socket timeout in seconds for communicating with a memcached
458# server. (integer value)
459#memcache_pool_socket_timeout = 3
460
461# (Optional) Number of seconds a connection to memcached is held unused in the
462# pool before it is closed. (integer value)
463#memcache_pool_unused_timeout = 60
464
465# (Optional) Number of seconds that an operation will wait to get a memcached
466# client connection from the pool. (integer value)
467#memcache_pool_conn_get_timeout = 10
468
469# (Optional) Use the advanced (eventlet safe) memcached client pool. The
470# advanced pool will only work under python 2.x. (boolean value)
471#memcache_use_advanced_pool = false
472
473# (Optional) Indicate whether to set the X-Service-Catalog header. If False,
474# middleware will not ask for service catalog on token validation and will not
475# set the X-Service-Catalog header. (boolean value)
476#include_service_catalog = true
477
478# Used to control the use and type of token binding. Can be set to: "disabled"
479# to not check token binding. "permissive" (default) to validate binding
480# information if the bind type is of a form known to the server and ignore it
481# if not. "strict" like "permissive" but if the bind type is unknown the token
482# will be rejected. "required" any form of token binding is needed to be
483# allowed. Finally the name of a binding method that must be present in tokens.
484# (string value)
485#enforce_token_bind = permissive
486
487# If true, the revocation list will be checked for cached tokens. This requires
488# that PKI tokens are configured on the identity server. (boolean value)
489#check_revocations_for_cached = false
490
491# Hash algorithms to use for hashing PKI tokens. This may be a single algorithm
492# or multiple. The algorithms are those supported by Python standard
493# hashlib.new(). The hashes will be tried in the order given, so put the
494# preferred one first for performance. The result of the first hash will be
495# stored in the cache. This will typically be set to multiple values only while
496# migrating from a less secure algorithm to a more secure one. Once all the old
497# tokens are expired this option should be set to a single value for better
498# performance. (list value)
499#hash_algorithms = md5
500
501# Prefix to prepend at the beginning of the path. Deprecated, use identity_uri.
502# (string value)
503#auth_admin_prefix =
504
505# Host providing the admin Identity API endpoint. Deprecated, use identity_uri.
506# (string value)
507#auth_host = 127.0.0.1
508
509# Port of the admin Identity API endpoint. Deprecated, use identity_uri.
510# (integer value)
511#auth_port = 35357
512
513# Protocol of the admin Identity API endpoint. Deprecated, use identity_uri.
514# (string value)
515# Allowed values: http, https
516#auth_protocol = https
517
518# Complete admin Identity API endpoint. This should specify the unversioned
519# root endpoint e.g. https://localhost:35357/ (string value)
520#identity_uri = <None>
521
522# This option is deprecated and may be removed in a future release. Single
523# shared secret with the Keystone configuration used for bootstrapping a
524# Keystone installation, or otherwise bypassing the normal authentication
525# process. This option should not be used, use `admin_user` and
526# `admin_password` instead. (string value)
527#admin_token = <None>
528
529# Service username. (string value)
530#admin_user = <None>
531
532# Service user password. (string value)
533#admin_password = <None>
534
535# Service tenant name. (string value)
536#admin_tenant_name = admin
537
538# Authentication type to load (unknown value)
539# Deprecated group/name - [DEFAULT]/auth_plugin
540#auth_type = <None>
541
542# Config Section from which to load plugin specific options (unknown value)
543#auth_section = <None>
544
545
546[matchmaker_redis]
547
548#
549# From oslo.messaging
550#
551
552# Host to locate redis. (string value)
553#host = 127.0.0.1
554
555# Use this port to connect to redis host. (port value)
556# Minimum value: 0
557# Maximum value: 65535
558#port = 6379
559
560# Password for Redis server (optional). (string value)
561#password =
562
563# List of Redis Sentinel hosts (fault tolerance mode) e.g.
564# [host:port, host1:port ... ] (list value)
565#sentinel_hosts =
566
567# Redis replica set name. (string value)
568#sentinel_group_name = oslo-messaging-zeromq
569
570# Time in ms to wait between connection attempts. (integer value)
571#wait_timeout = 500
572
573# Time in ms to wait before the transaction is killed. (integer value)
574#check_timeout = 20000
575
576# Timeout in ms on blocking socket operations (integer value)
577#socket_timeout = 1000
578
579
580[oslo_concurrency]
581
582#
583# From oslo.concurrency
584#
585
586# Enables or disables inter-process locks. (boolean value)
587# Deprecated group/name - [DEFAULT]/disable_process_locking
588#disable_process_locking = false
589
590# Directory to use for lock files. For security, the specified directory
591# should only be writable by the user running the processes that need locking.
592# Defaults to environment variable OSLO_LOCK_PATH. If OSLO_LOCK_PATH is not set
593# in the environment, use the Python tempfile.gettempdir function to find a
594# suitable location. If external locks are used, a lock path must be set.
595# (string value)
596# Deprecated group/name - [DEFAULT]/lock_path
597#lock_path = /tmp
598
599
600[oslo_messaging_amqp]
601
602#
603# From oslo.messaging
604#
605
606# address prefix used when sending to a specific server (string value)
607# Deprecated group/name - [amqp1]/server_request_prefix
608#server_request_prefix = exclusive
609
610# address prefix used when broadcasting to all servers (string value)
611# Deprecated group/name - [amqp1]/broadcast_prefix
612#broadcast_prefix = broadcast
613
614# address prefix when sending to any server in group (string value)
615# Deprecated group/name - [amqp1]/group_request_prefix
616#group_request_prefix = unicast
617
618# Name for the AMQP container (string value)
619# Deprecated group/name - [amqp1]/container_name
620#container_name = <None>
621
622# Timeout for inactive connections (in seconds) (integer value)
623# Deprecated group/name - [amqp1]/idle_timeout
624#idle_timeout = 0
625
626# Debug: dump AMQP frames to stdout (boolean value)
627# Deprecated group/name - [amqp1]/trace
628#trace = false
629
630# CA certificate PEM file to verify server certificate (string value)
631# Deprecated group/name - [amqp1]/ssl_ca_file
632#ssl_ca_file =
633
634# Identifying certificate PEM file to present to clients (string value)
635# Deprecated group/name - [amqp1]/ssl_cert_file
636#ssl_cert_file =
637
638# Private key PEM file used to sign cert_file certificate (string value)
639# Deprecated group/name - [amqp1]/ssl_key_file
640#ssl_key_file =
641
642# Password for decrypting ssl_key_file (if encrypted) (string value)
643# Deprecated group/name - [amqp1]/ssl_key_password
644#ssl_key_password = <None>
645
646# Accept clients using either SSL or plain TCP (boolean value)
647# Deprecated group/name - [amqp1]/allow_insecure_clients
648#allow_insecure_clients = false
649
650# Space separated list of acceptable SASL mechanisms (string value)
651# Deprecated group/name - [amqp1]/sasl_mechanisms
652#sasl_mechanisms =
653
654# Path to directory that contains the SASL configuration (string value)
655# Deprecated group/name - [amqp1]/sasl_config_dir
656#sasl_config_dir =
657
658# Name of configuration file (without .conf suffix) (string value)
659# Deprecated group/name - [amqp1]/sasl_config_name
660#sasl_config_name =
661
662# User name for message broker authentication (string value)
663# Deprecated group/name - [amqp1]/username
664#username =
665
666# Password for message broker authentication (string value)
667# Deprecated group/name - [amqp1]/password
668#password =
669
670
671[oslo_messaging_notifications]
672
673#
674# From oslo.messaging
675#
676
677# The Drivers(s) to handle sending notifications. Possible values are
678# messaging, messagingv2, routing, log, test, noop (multi valued)
679# Deprecated group/name - [DEFAULT]/notification_driver
680#driver =
681
682# A URL representing the messaging driver to use for notifications. If not set,
683# we fall back to the same configuration used for RPC. (string value)
684# Deprecated group/name - [DEFAULT]/notification_transport_url
685#transport_url = <None>
686
687# AMQP topic used for OpenStack notifications. (list value)
688# Deprecated group/name - [rpc_notifier2]/topics
689# Deprecated group/name - [DEFAULT]/notification_topics
690#topics = notifications
691
692
693[oslo_messaging_rabbit]
694
695#
696# From oslo.messaging
697#
698
699# Use durable queues in AMQP. (boolean value)
700# Deprecated group/name - [DEFAULT]/amqp_durable_queues
701# Deprecated group/name - [DEFAULT]/rabbit_durable_queues
702#amqp_durable_queues = false
703
704# Auto-delete queues in AMQP. (boolean value)
705# Deprecated group/name - [DEFAULT]/amqp_auto_delete
706#amqp_auto_delete = false
707
708# SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
709# SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
710# distributions. (string value)
711# Deprecated group/name - [DEFAULT]/kombu_ssl_version
712#kombu_ssl_version =
713
714# SSL key file (valid only if SSL enabled). (string value)
715# Deprecated group/name - [DEFAULT]/kombu_ssl_keyfile
716#kombu_ssl_keyfile =
717
718# SSL cert file (valid only if SSL enabled). (string value)
719# Deprecated group/name - [DEFAULT]/kombu_ssl_certfile
720#kombu_ssl_certfile =
721
722# SSL certification authority file (valid only if SSL enabled). (string value)
723# Deprecated group/name - [DEFAULT]/kombu_ssl_ca_certs
724#kombu_ssl_ca_certs =
725
726# How long to wait before reconnecting in response to an AMQP consumer cancel
727# notification. (floating point value)
728# Deprecated group/name - [DEFAULT]/kombu_reconnect_delay
729#kombu_reconnect_delay = 1.0
730
731# EXPERIMENTAL: Possible values are: gzip, bz2. If not set compression will not
732# be used. This option may notbe available in future versions. (string value)
733#kombu_compression = <None>
734
735# How long to wait a missing client beforce abandoning to send it its replies.
736# This value should not be longer than rpc_response_timeout. (integer value)
737# Deprecated group/name - [DEFAULT]/kombu_reconnect_timeout
738#kombu_missing_consumer_retry_timeout = 60
739
740# Determines how the next RabbitMQ node is chosen in case the one we are
741# currently connected to becomes unavailable. Takes effect only if more than
742# one RabbitMQ node is provided in config. (string value)
743# Allowed values: round-robin, shuffle
744#kombu_failover_strategy = round-robin
745
746# The RabbitMQ broker address where a single node is used. (string value)
747# Deprecated group/name - [DEFAULT]/rabbit_host
748#rabbit_host = localhost
749
750# The RabbitMQ broker port where a single node is used. (port value)
751# Minimum value: 0
752# Maximum value: 65535
753# Deprecated group/name - [DEFAULT]/rabbit_port
754#rabbit_port = 5672
755
756# RabbitMQ HA cluster host:port pairs. (list value)
757# Deprecated group/name - [DEFAULT]/rabbit_hosts
758#rabbit_hosts = $rabbit_host:$rabbit_port
759
760# Connect over SSL for RabbitMQ. (boolean value)
761# Deprecated group/name - [DEFAULT]/rabbit_use_ssl
762#rabbit_use_ssl = false
763
764# The RabbitMQ userid. (string value)
765# Deprecated group/name - [DEFAULT]/rabbit_userid
766#rabbit_userid = guest
767
768# The RabbitMQ password. (string value)
769# Deprecated group/name - [DEFAULT]/rabbit_password
770#rabbit_password = guest
771
772# The RabbitMQ login method. (string value)
773# Deprecated group/name - [DEFAULT]/rabbit_login_method
774#rabbit_login_method = AMQPLAIN
775
776# The RabbitMQ virtual host. (string value)
777# Deprecated group/name - [DEFAULT]/rabbit_virtual_host
778#rabbit_virtual_host = /
779
780# How frequently to retry connecting with RabbitMQ. (integer value)
781#rabbit_retry_interval = 1
782
783# How long to backoff for between retries when connecting to RabbitMQ. (integer
784# value)
785# Deprecated group/name - [DEFAULT]/rabbit_retry_backoff
786#rabbit_retry_backoff = 2
787
788# Maximum interval of RabbitMQ connection retries. Default is 30 seconds.
789# (integer value)
790#rabbit_interval_max = 30
791
792# Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry
793# count). (integer value)
794# Deprecated group/name - [DEFAULT]/rabbit_max_retries
795#rabbit_max_retries = 0
796
797# Try to use HA queues in RabbitMQ (x-ha-policy: all). If you change this
798# option, you must wipe the RabbitMQ database. In RabbitMQ 3.0, queue mirroring
799# is no longer controlled by the x-ha-policy argument when declaring a queue.
800# If you just want to make sure that all queues (except those with auto-
801# generated names) are mirrored across all nodes, run: "rabbitmqctl set_policy
802# HA '^(?!amq\.).*' '{"ha-mode": "all"}' " (boolean value)
803# Deprecated group/name - [DEFAULT]/rabbit_ha_queues
804#rabbit_ha_queues = false
805
806# Positive integer representing duration in seconds for queue TTL (x-expires).
807# Queues which are unused for the duration of the TTL are automatically
808# deleted. The parameter affects only reply and fanout queues. (integer value)
809# Minimum value: 1
810#rabbit_transient_queues_ttl = 1800
811
812# Specifies the number of messages to prefetch. Setting to zero allows
813# unlimited messages. (integer value)
814#rabbit_qos_prefetch_count = 0
815
816# Number of seconds after which the Rabbit broker is considered down if
817# heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL (integer
818# value)
819#heartbeat_timeout_threshold = 60
820
821# How often times during the heartbeat_timeout_threshold we check the
822# heartbeat. (integer value)
823#heartbeat_rate = 2
824
825# Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake (boolean value)
826# Deprecated group/name - [DEFAULT]/fake_rabbit
827#fake_rabbit = false
828
829# Maximum number of channels to allow (integer value)
830#channel_max = <None>
831
832# The maximum byte size for an AMQP frame (integer value)
833#frame_max = <None>
834
835# How often to send heartbeats for consumer's connections (integer value)
836#heartbeat_interval = 1
837
838# Enable SSL (boolean value)
839#ssl = <None>
840
841# Arguments passed to ssl.wrap_socket (dict value)
842#ssl_options = <None>
843
844# Set socket timeout in seconds for connection's socket (floating point value)
845#socket_timeout = 0.25
846
847# Set TCP_USER_TIMEOUT in seconds for connection's socket (floating point
848# value)
849#tcp_user_timeout = 0.25
850
851# Set delay for reconnection to some host which has connection error (floating
852# point value)
853#host_connection_reconnect_delay = 0.25
854
855# Maximum number of connections to keep queued. (integer value)
856#pool_max_size = 10
857
858# Maximum number of connections to create above `pool_max_size`. (integer
859# value)
860#pool_max_overflow = 0
861
862# Default number of seconds to wait for a connections to available (integer
863# value)
864#pool_timeout = 30
865
866# Lifetime of a connection (since creation) in seconds or None for no
867# recycling. Expired connections are closed on acquire. (integer value)
868#pool_recycle = 600
869
870# Threshold at which inactive (since release) connections are considered stale
871# in seconds or None for no staleness. Stale connections are closed on acquire.
872# (integer value)
873#pool_stale = 60
874
875# Persist notification messages. (boolean value)
876#notification_persistence = false
877
878# Exchange name for for sending notifications (string value)
879#default_notification_exchange = ${control_exchange}_notification
880
881# Max number of not acknowledged message which RabbitMQ can send to
882# notification listener. (integer value)
883#notification_listener_prefetch_count = 100
884
885# Reconnecting retry count in case of connectivity problem during sending
886# notification, -1 means infinite retry. (integer value)
887#default_notification_retry_attempts = -1
888
889# Reconnecting retry delay in case of connectivity problem during sending
890# notification message (floating point value)
891#notification_retry_delay = 0.25
892
893# Time to live for rpc queues without consumers in seconds. (integer value)
894#rpc_queue_expiration = 60
895
896# Exchange name for sending RPC messages (string value)
897#default_rpc_exchange = ${control_exchange}_rpc
898
899# Exchange name for receiving RPC replies (string value)
900#rpc_reply_exchange = ${control_exchange}_rpc_reply
901
902# Max number of not acknowledged message which RabbitMQ can send to rpc
903# listener. (integer value)
904#rpc_listener_prefetch_count = 100
905
906# Max number of not acknowledged message which RabbitMQ can send to rpc reply
907# listener. (integer value)
908#rpc_reply_listener_prefetch_count = 100
909
910# Reconnecting retry count in case of connectivity problem during sending
911# reply. -1 means infinite retry during rpc_timeout (integer value)
912#rpc_reply_retry_attempts = -1
913
914# Reconnecting retry delay in case of connectivity problem during sending
915# reply. (floating point value)
916#rpc_reply_retry_delay = 0.25
917
918# Reconnecting retry count in case of connectivity problem during sending RPC
919# message, -1 means infinite retry. If actual retry attempts in not 0 the rpc
920# request could be processed more then one time (integer value)
921#default_rpc_retry_attempts = -1
922
923# Reconnecting retry delay in case of connectivity problem during sending RPC
924# message (floating point value)
925#rpc_retry_delay = 0.25
926
927
928[oslo_policy]
929
930#
931# From oslo.policy
932#
933
934# The JSON file that defines policies. (string value)
935# Deprecated group/name - [DEFAULT]/policy_file
936#policy_file = policy.json
937
938# Default rule. Enforced when a requested rule is not found. (string value)
939# Deprecated group/name - [DEFAULT]/policy_default_rule
940#policy_default_rule = default
941
942# Directories where policy configuration files are stored. They can be relative
943# to any directory in the search path defined by the config_dir option, or
944# absolute paths. The file defined by policy_file must exist for these
945# directories to be searched. Missing or empty directories are ignored. (multi
946# valued)
947# Deprecated group/name - [DEFAULT]/policy_dirs
948#policy_dirs = policy.d
949
950
951[service_credentials]
952auth_type = password
953auth_url = http://localhost:5000/v3
954project_domain_name = default
955user_domain_name = default
956project_name = service
957username = ceilometer
958password = password
959interface = internalURL
960region_name = RegionOne
raghunath dudyalaa927d562016-09-28 14:04:13 +0530961
962[api]
963default_api_return_limit = 1000