Advertisement
Guest User

GlanceAPI-test-cluster

a guest
Oct 20th, 2015
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.60 KB | None | 0 0
  1. root@sv-osm00:/var/run# cat /etc/glance/glance-api.conf
  2. [DEFAULT]
  3.  
  4. #
  5. # From glance.api
  6. #
  7.  
  8. # When true, this option sets the owner of an image to be the tenant.
  9. # Otherwise, the owner of the image will be the authenticated user
  10. # issuing the request. (boolean value)
  11. #owner_is_tenant = true
  12.  
  13. # Role used to identify an authenticated user as administrator.
  14. # (string value)
  15. #admin_role = admin
  16.  
  17. # Allow unauthenticated users to access the API with read-only
  18. # privileges. This only applies when using ContextMiddleware. (boolean
  19. # value)
  20. #allow_anonymous_access = false
  21.  
  22. # Public url to use for versions endpoint. The default is None, which
  23. # will use the request's host_url attribute to populate the URL base.
  24. # If Glance is operating behind a proxy, you will want to change this
  25. # to represent the proxy's URL. (string value)
  26. #public_endpoint = <None>
  27.  
  28. # Whether to allow users to specify image properties beyond what the
  29. # image schema provides (boolean value)
  30. #allow_additional_image_properties = true
  31.  
  32. # Maximum number of image members per image. Negative values evaluate
  33. # to unlimited. (integer value)
  34. #image_member_quota = 128
  35.  
  36. # Maximum number of properties allowed on an image. Negative values
  37. # evaluate to unlimited. (integer value)
  38. #image_property_quota = 128
  39.  
  40. # Maximum number of tags allowed on an image. Negative values evaluate
  41. # to unlimited. (integer value)
  42. #image_tag_quota = 128
  43.  
  44. # Maximum number of locations allowed on an image. Negative values
  45. # evaluate to unlimited. (integer value)
  46. #image_location_quota = 10
  47.  
  48. # Python module path of data access API (string value)
  49. #data_api = glance.db.sqlalchemy.api
  50.  
  51. # Default value for the number of items returned by a request if not
  52. # specified explicitly in the request (integer value)
  53. #limit_param_default = 25
  54.  
  55. # Maximum permissible number of items that could be returned by a
  56. # request (integer value)
  57. #api_limit_max = 1000
  58.  
  59. # Whether to include the backend image storage location in image
  60. # properties. Revealing storage location can be a security risk, so
  61. # use this setting with caution! (boolean value)
  62. #show_image_direct_url = false
  63. show_image_direct_url = True
  64.  
  65. # Whether to include the backend image locations in image properties.
  66. # For example, if using the file system store a URL of
  67. # "file:///path/to/image" will be returned to the user in the
  68. # 'direct_url' meta-data field. Revealing storage location can be a
  69. # security risk, so use this setting with caution! The overrides
  70. # show_image_direct_url. (boolean value)
  71. #show_multiple_locations = false
  72.  
  73. # Maximum size of image a user can upload in bytes. Defaults to
  74. # 1099511627776 bytes (1 TB).WARNING: this value should only be
  75. # increased after careful consideration and must be set to a value
  76. # under 8 EB (9223372036854775808). (integer value)
  77. #image_size_cap = 1099511627776
  78.  
  79. # Set a system wide quota for every user. This value is the total
  80. # capacity that a user can use across all storage systems. A value of
  81. # 0 means unlimited.Optional unit can be specified for the value.
  82. # Accepted units are B, KB, MB, GB and TB representing Bytes,
  83. # KiloBytes, MegaBytes, GigaBytes and TeraBytes respectively. If no
  84. # unit is specified then Bytes is assumed. Note that there should not
  85. # be any space between value and unit and units are case sensitive.
  86. # (string value)
  87. #user_storage_quota = 0
  88.  
  89. # Deploy the v1 OpenStack Images API. (boolean value)
  90. #enable_v1_api = true
  91.  
  92. # Deploy the v2 OpenStack Images API. (boolean value)
  93. #enable_v2_api = true
  94.  
  95. # Deploy the v1 OpenStack Registry API. (boolean value)
  96. #enable_v1_registry = true
  97.  
  98. # Deploy the v2 OpenStack Registry API. (boolean value)
  99. #enable_v2_registry = true
  100.  
  101. # The hostname/IP of the pydev process listening for debug connections
  102. # (string value)
  103. #pydev_worker_debug_host = <None>
  104.  
  105. # The port on which a pydev process is listening for connections.
  106. # (integer value)
  107. #pydev_worker_debug_port = 5678
  108.  
  109. # AES key for encrypting store 'location' metadata. This includes, if
  110. # used, Swift or S3 credentials. Should be set to a random string of
  111. # length 16, 24 or 32 bytes (string value)
  112. #metadata_encryption_key = <None>
  113.  
  114. # Digest algorithm which will be used for digital signature; the
  115. # default is sha1 the default in Kilo for a smooth upgrade process,
  116. # and it will be updated with sha256 in next release(L). Use the
  117. # command "openssl list-message-digest-algorithms" to get the
  118. # available algorithms supported by the version of OpenSSL on the
  119. # platform. Examples are "sha1", "sha256", "sha512", etc. (string
  120. # value)
  121. #digest_algorithm = sha1
  122.  
  123. # This value sets what strategy will be used to determine the image
  124. # location order. Currently two strategies are packaged with Glance
  125. # 'location_order' and 'store_type'. (string value)
  126. # Allowed values: location_order, store_type
  127. #location_strategy = location_order
  128.  
  129. # The location of the property protection file.This file contains the
  130. # rules for property protections and the roles/policies associated
  131. # with it. If this config value is not specified, by default, property
  132. # protections won't be enforced. If a value is specified and the file
  133. # is not found, then the glance-api service will not start. (string
  134. # value)
  135. #property_protection_file = <None>
  136.  
  137. # This config value indicates whether "roles" or "policies" are used
  138. # in the property protection file. (string value)
  139. # Allowed values: roles, policies
  140. #property_protection_rule_format = roles
  141.  
  142. # Modules of exceptions that are permitted to be recreated upon
  143. # receiving exception data from an rpc call. (list value)
  144. #allowed_rpc_exception_modules = openstack.common.exception,glance.common.exception,exceptions
  145.  
  146. # Address to bind the server. Useful when selecting a particular
  147. # network interface. (string value)
  148. #bind_host = 0.0.0.0
  149. bind_host = 10.216.110.3
  150.  
  151. # The port on which the server will listen. (integer value)
  152. #bind_port = <None>
  153. bind_port = 9292
  154.  
  155. # The number of child process workers that will be created to service
  156. # requests. The default will be equal to the number of CPUs available.
  157. # (integer value)
  158. #workers = 8
  159. workers = 8
  160.  
  161. # Maximum line size of message headers to be accepted. max_header_line
  162. # may need to be increased when using large tokens (typically those
  163. # generated by the Keystone v3 API with big service catalogs (integer
  164. # value)
  165. #max_header_line = 16384
  166.  
  167. # If False, server will return the header "Connection: close", If
  168. # True, server will return "Connection: Keep-Alive" in its responses.
  169. # In order to close the client socket connection explicitly after the
  170. # response is sent and read successfully by the client, you simply
  171. # have to set this option to False when you create a wsgi server.
  172. # (boolean value)
  173. #http_keepalive = true
  174.  
  175. # Timeout for client connections' socket operations. If an incoming
  176. # connection is idle for this number of seconds it will be closed. A
  177. # value of '0' means wait forever. (integer value)
  178. #client_socket_timeout = 0
  179.  
  180. # The backlog value that will be used when creating the TCP listener
  181. # socket. (integer value)
  182. #backlog = 4096
  183. backlog = 4096
  184.  
  185. # The value for the socket option TCP_KEEPIDLE. This is the time in
  186. # seconds that the connection must be idle before TCP starts sending
  187. # keepalive probes. (integer value)
  188. #tcp_keepidle = 600
  189.  
  190. # CA certificate file to use to verify connecting clients. (string
  191. # value)
  192. #ca_file = <None>
  193.  
  194. # Certificate file to use when starting API server securely. (string
  195. # value)
  196. #cert_file = <None>
  197.  
  198. # Private key file to use when starting API server securely. (string
  199. # value)
  200. #key_file = <None>
  201.  
  202. # The path to the sqlite file database that will be used for image
  203. # cache management. (string value)
  204. #image_cache_sqlite_db = cache.db
  205.  
  206. # The driver to use for image cache management. (string value)
  207. #image_cache_driver = sqlite
  208.  
  209. # The upper limit (the maximum size of accumulated cache in bytes)
  210. # beyond which pruner, if running, starts cleaning the images cache.
  211. # (integer value)
  212. #image_cache_max_size = 10737418240
  213.  
  214. # The amount of time to let an image remain in the cache without being
  215. # accessed. (integer value)
  216. #image_cache_stall_time = 86400
  217.  
  218. # Base directory that the Image Cache uses. (string value)
  219. #image_cache_dir = <None>
  220. image_cache_dir = /var/lib/glance/image-cache
  221.  
  222. # Default publisher_id for outgoing notifications. (string value)
  223. #default_publisher_id = image.localhost
  224.  
  225. # List of disabled notifications. A notification can be given either
  226. # as a notification type to disable a single event, or as a
  227. # notification group prefix to disable all events within a group.
  228. # Example: if this config option is set to ["image.create",
  229. # "metadef_namespace"], then "image.create" notification will not be
  230. # sent after image is created and none of the notifications for
  231. # metadefinition namespaces will be sent. (list value)
  232. #disabled_notifications =
  233.  
  234. # Address to find the registry server. (string value)
  235. #registry_host = 0.0.0.0
  236. registry_host = 10.216.110.2
  237.  
  238. # Port the registry server is listening on. (integer value)
  239. #registry_port = 9191
  240. registry_port = 9191
  241.  
  242. # Whether to pass through the user token when making requests to the
  243. # registry. (boolean value)
  244. #use_user_token = true
  245.  
  246. # The administrators user name. If "use_user_token" is not in effect,
  247. # then admin credentials can be specified. (string value)
  248. #admin_user = <None>
  249.  
  250. # The administrators password. If "use_user_token" is not in effect,
  251. # then admin credentials can be specified. (string value)
  252. #admin_password = <None>
  253.  
  254. # The tenant name of the administrative user. If "use_user_token" is
  255. # not in effect, then admin tenant name can be specified. (string
  256. # value)
  257. #admin_tenant_name = <None>
  258.  
  259. # The URL to the keystone service. If "use_user_token" is not in
  260. # effect and using keystone auth, then URL of keystone can be
  261. # specified. (string value)
  262. #auth_url = <None>
  263.  
  264. # The strategy to use for authentication. If "use_user_token" is not
  265. # in effect, then auth strategy can be specified. (string value)
  266. #auth_strategy = noauth
  267.  
  268. # The region for the authentication service. If "use_user_token" is
  269. # not in effect and using keystone auth, then region name can be
  270. # specified. (string value)
  271. #auth_region = <None>
  272. auth_region = RegionOne
  273.  
  274. # The protocol to use for communication with the registry server.
  275. # Either http or https. (string value)
  276. #registry_client_protocol = http
  277. registry_client_protocol = http
  278.  
  279. # The path to the key file to use in SSL connections to the registry
  280. # server, if any. Alternately, you may set the GLANCE_CLIENT_KEY_FILE
  281. # environment variable to a filepath of the key file (string value)
  282. #registry_client_key_file = <None>
  283.  
  284. # The path to the cert file to use in SSL connections to the registry
  285. # server, if any. Alternately, you may set the GLANCE_CLIENT_CERT_FILE
  286. # environment variable to a filepath of the CA cert file (string
  287. # value)
  288. #registry_client_cert_file = <None>
  289.  
  290. # The path to the certifying authority cert file to use in SSL
  291. # connections to the registry server, if any. Alternately, you may set
  292. # the GLANCE_CLIENT_CA_FILE environment variable to a filepath of the
  293. # CA cert file. (string value)
  294. #registry_client_ca_file = <None>
  295.  
  296. # When using SSL in connections to the registry server, do not require
  297. # validation via a certifying authority. This is the registry's
  298. # equivalent of specifying --insecure on the command line using
  299. # glanceclient for the API. (boolean value)
  300. #registry_client_insecure = false
  301.  
  302. # The period of time, in seconds, that the API server will wait for a
  303. # registry request to complete. A value of 0 implies no timeout.
  304. # (integer value)
  305. #registry_client_timeout = 600
  306.  
  307. # Whether to pass through headers containing user and tenant
  308. # information when making requests to the registry. This allows the
  309. # registry to use the context middleware without keystonemiddleware's
  310. # auth_token middleware, removing calls to the keystone auth service.
  311. # It is recommended that when using this option, secure communication
  312. # between glance api and glance registry is ensured by means other
  313. # than auth_token middleware. (boolean value)
  314. #send_identity_headers = false
  315.  
  316. # Directory that the scrubber will use to track information about what
  317. # to delete. Make sure this is set in glance-api.conf and glance-
  318. # scrubber.conf. (string value)
  319. #scrubber_datadir = /var/lib/glance/scrubber
  320. scrubber_datadir = /var/lib/glance/scrubber
  321.  
  322. # The amount of time in seconds to delay before performing a delete.
  323. # (integer value)
  324. #scrub_time = 0
  325. scrub_time = 43200
  326.  
  327. # A boolean that determines if the scrubber should clean up the files
  328. # it uses for taking data. Only one server in your deployment should
  329. # be designated the cleanup host. (boolean value)
  330. #cleanup_scrubber = false
  331.  
  332. # Turn on/off delayed delete. (boolean value)
  333. #delayed_delete = false
  334. delayed_delete = False
  335.  
  336. # Items must have a modified time that is older than this value in
  337. # order to be candidates for cleanup. (integer value)
  338. #cleanup_scrubber_time = 86400
  339.  
  340. #
  341. # From oslo.log
  342. #
  343.  
  344. # Print debugging output (set logging level to DEBUG instead of
  345. # default WARNING level). (boolean value)
  346. #debug = false
  347. debug = True
  348.  
  349. # Print more verbose output (set logging level to INFO instead of
  350. # default WARNING level). (boolean value)
  351. #verbose = false
  352. verbose = True
  353.  
  354. # The name of a logging configuration file. This file is appended to
  355. # any existing logging configuration files. For details about logging
  356. # configuration files, see the Python logging module documentation.
  357. # (string value)
  358. # Deprecated group/name - [DEFAULT]/log_config
  359. #log_config_append = <None>
  360.  
  361. # DEPRECATED. A logging.Formatter log message format string which may
  362. # use any of the available logging.LogRecord attributes. This option
  363. # is deprecated. Please use logging_context_format_string and
  364. # logging_default_format_string instead. (string value)
  365. #log_format = <None>
  366.  
  367. # Format string for %%(asctime)s in log records. Default: %(default)s
  368. # . (string value)
  369. #log_date_format = %Y-%m-%d %H:%M:%S
  370.  
  371. # (Optional) Name of log file to output to. If no default is set,
  372. # logging will go to stdout. (string value)
  373. # Deprecated group/name - [DEFAULT]/logfile
  374. #log_file = <None>
  375. log_file = /var/log/glance/api.log
  376.  
  377. # (Optional) The base directory used for relative --log-file paths.
  378. # (string value)
  379. # Deprecated group/name - [DEFAULT]/logdir
  380. #log_dir = <None>
  381. log_dir = /var/log/glance
  382.  
  383. # Use syslog for logging. Existing syslog format is DEPRECATED during
  384. # I, and will change in J to honor RFC5424. (boolean value)
  385. #use_syslog = false
  386. use_syslog = True
  387.  
  388. # (Optional) Enables or disables syslog rfc5424 format for logging. If
  389. # enabled, prefixes the MSG part of the syslog message with APP-NAME
  390. # (RFC5424). The format without the APP-NAME is deprecated in I, and
  391. # will be removed in J. (boolean value)
  392. #use_syslog_rfc_format = false
  393. use_syslog_rfc_format = True
  394.  
  395. # Syslog facility to receive log lines. (string value)
  396. #syslog_log_facility = LOG_USER
  397. syslog_log_facility = LOG_LOCAL2
  398.  
  399. # Log output to standard error. (boolean value)
  400. #use_stderr = true
  401. use_stderr = False
  402.  
  403. # Format string to use for log messages with context. (string value)
  404. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  405.  
  406. # Format string to use for log messages without context. (string
  407. # value)
  408. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  409.  
  410. # Data to append to log format when level is DEBUG. (string value)
  411. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  412.  
  413. # Prefix each line of exception output with this format. (string
  414. # value)
  415. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
  416.  
  417. # List of logger=LEVEL pairs. (list value)
  418. #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
  419.  
  420. # Enables or disables publication of error events. (boolean value)
  421. #publish_errors = false
  422.  
  423. # Enables or disables fatal status of deprecations. (boolean value)
  424. #fatal_deprecations = false
  425.  
  426. # The format for an instance that is passed with the log message.
  427. # (string value)
  428. #instance_format = "[instance: %(uuid)s] "
  429.  
  430. # The format for an instance UUID that is passed with the log message.
  431. # (string value)
  432. #instance_uuid_format = "[instance: %(uuid)s] "
  433.  
  434. #
  435. # From oslo.messaging
  436. #
  437.  
  438. # ZeroMQ bind address. Should be a wildcard (*), an ethernet
  439. # interface, or IP. The "host" option should point or resolve to this
  440. # address. (string value)
  441. #rpc_zmq_bind_address = *
  442.  
  443. # MatchMaker driver. (string value)
  444. #rpc_zmq_matchmaker = local
  445.  
  446. # ZeroMQ receiver listening port. (integer value)
  447. #rpc_zmq_port = 9501
  448.  
  449. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  450. #rpc_zmq_contexts = 1
  451.  
  452. # Maximum number of ingress messages to locally buffer per topic.
  453. # Default is unlimited. (integer value)
  454. #rpc_zmq_topic_backlog = <None>
  455.  
  456. # Directory for holding IPC sockets. (string value)
  457. #rpc_zmq_ipc_dir = /var/run/openstack
  458.  
  459. # Name of this node. Must be a valid hostname, FQDN, or IP address.
  460. # Must match "host" option, if running Nova. (string value)
  461. #rpc_zmq_host = localhost
  462.  
  463. # Seconds to wait before a cast expires (TTL). Only supported by
  464. # impl_zmq. (integer value)
  465. #rpc_cast_timeout = 30
  466.  
  467. # Heartbeat frequency. (integer value)
  468. #matchmaker_heartbeat_freq = 300
  469.  
  470. # Heartbeat time-to-live. (integer value)
  471. #matchmaker_heartbeat_ttl = 600
  472.  
  473. # Size of RPC thread pool. (integer value)
  474. #rpc_thread_pool_size = 64
  475.  
  476. # Driver or drivers to handle sending notifications. (multi valued)
  477. #notification_driver =
  478. notification_driver =messaging
  479.  
  480. # AMQP topic used for OpenStack notifications. (list value)
  481. # Deprecated group/name - [rpc_notifier2]/topics
  482. #notification_topics = notifications
  483.  
  484. # Seconds to wait for a response from a call. (integer value)
  485. #rpc_response_timeout = 60
  486.  
  487. # A URL representing the messaging driver to use and its full
  488. # configuration. If not set, we fall back to the rpc_backend option
  489. # and driver specific configuration. (string value)
  490. #transport_url = <None>
  491.  
  492. # The messaging driver to use, defaults to rabbit. Other drivers
  493. # include qpid and zmq. (string value)
  494. #rpc_backend = rabbit
  495.  
  496. # The default exchange under which topics are scoped. May be
  497. # overridden by an exchange name specified in the transport_url
  498. # option. (string value)
  499. #control_exchange = openstack
  500. os_region_name=RegionOne
  501. amqp_durable_queues=False
  502.  
  503.  
  504. [database]
  505.  
  506. #
  507. # From oslo.db
  508. #
  509.  
  510. # The file name to use with SQLite. (string value)
  511. # Deprecated group/name - [DEFAULT]/sqlite_db
  512. #sqlite_db = oslo.sqlite
  513.  
  514. # If True, SQLite uses synchronous mode. (boolean value)
  515. # Deprecated group/name - [DEFAULT]/sqlite_synchronous
  516. #sqlite_synchronous = true
  517.  
  518. # The back end to use for the database. (string value)
  519. # Deprecated group/name - [DEFAULT]/db_backend
  520. #backend = sqlalchemy
  521.  
  522. # The SQLAlchemy connection string to use to connect to the database.
  523. # (string value)
  524. # Deprecated group/name - [DEFAULT]/sql_connection
  525. # Deprecated group/name - [DATABASE]/sql_connection
  526. # Deprecated group/name - [sql]/connection
  527. #connection = <None>
  528. connection = mysql://glance:qfOU8M6o@10.216.110.2/glance?read_timeout=60
  529.  
  530. # The SQLAlchemy connection string to use to connect to the slave
  531. # database. (string value)
  532. #slave_connection = <None>
  533.  
  534. # The SQL mode to be used for MySQL sessions. This option, including
  535. # the default, overrides any server-set SQL mode. To use whatever SQL
  536. # mode is set by the server configuration, set this to no value.
  537. # Example: mysql_sql_mode= (string value)
  538. #mysql_sql_mode = TRADITIONAL
  539.  
  540. # Timeout before idle SQL connections are reaped. (integer value)
  541. # Deprecated group/name - [DEFAULT]/sql_idle_timeout
  542. # Deprecated group/name - [DATABASE]/sql_idle_timeout
  543. # Deprecated group/name - [sql]/idle_timeout
  544. #idle_timeout = 3600
  545. idle_timeout = 3600
  546.  
  547. # Minimum number of SQL connections to keep open in a pool. (integer
  548. # value)
  549. # Deprecated group/name - [DEFAULT]/sql_min_pool_size
  550. # Deprecated group/name - [DATABASE]/sql_min_pool_size
  551. #min_pool_size = 1
  552.  
  553. # Maximum number of SQL connections to keep open in a pool. (integer
  554. # value)
  555. # Deprecated group/name - [DEFAULT]/sql_max_pool_size
  556. # Deprecated group/name - [DATABASE]/sql_max_pool_size
  557. #max_pool_size = <None>
  558. max_pool_size = 30
  559.  
  560. # Maximum number of database connection retries during startup. Set to
  561. # -1 to specify an infinite retry count. (integer value)
  562. # Deprecated group/name - [DEFAULT]/sql_max_retries
  563. # Deprecated group/name - [DATABASE]/sql_max_retries
  564. #max_retries = 10
  565. max_retries = -1
  566.  
  567. # Interval between retries of opening a SQL connection. (integer
  568. # value)
  569. # Deprecated group/name - [DEFAULT]/sql_retry_interval
  570. # Deprecated group/name - [DATABASE]/reconnect_interval
  571. #retry_interval = 10
  572.  
  573. # If set, use this value for max_overflow with SQLAlchemy. (integer
  574. # value)
  575. # Deprecated group/name - [DEFAULT]/sql_max_overflow
  576. # Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
  577. #max_overflow = <None>
  578. max_overflow = 40
  579.  
  580. # Verbosity of SQL debugging information: 0=None, 100=Everything.
  581. # (integer value)
  582. # Deprecated group/name - [DEFAULT]/sql_connection_debug
  583. #connection_debug = 0
  584.  
  585. # Add Python stack traces to SQL as comment strings. (boolean value)
  586. # Deprecated group/name - [DEFAULT]/sql_connection_trace
  587. #connection_trace = false
  588.  
  589. # If set, use this value for pool_timeout with SQLAlchemy. (integer
  590. # value)
  591. # Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
  592. #pool_timeout = <None>
  593.  
  594. # Enable the experimental use of database reconnect on connection
  595. # lost. (boolean value)
  596. #use_db_reconnect = false
  597.  
  598. # Seconds between retries of a database transaction. (integer value)
  599. #db_retry_interval = 1
  600.  
  601. # If True, increases the interval between retries of a database
  602. # operation up to db_max_retry_interval. (boolean value)
  603. #db_inc_retry_interval = true
  604.  
  605. # If db_inc_retry_interval is set, the maximum seconds between retries
  606. # of a database operation. (integer value)
  607. #db_max_retry_interval = 10
  608.  
  609. # Maximum retries in case of connection error or deadlock error before
  610. # error is raised. Set to -1 to specify an infinite retry count.
  611. # (integer value)
  612. #db_max_retries = 20
  613.  
  614. #
  615. # From oslo.db.concurrency
  616. #
  617.  
  618. # Enable the experimental use of thread pooling for all DB API calls
  619. # (boolean value)
  620. # Deprecated group/name - [DEFAULT]/dbapi_use_tpool
  621. #use_tpool = false
  622.  
  623.  
  624. [glance_store]
  625.  
  626. #
  627. # From glance.store
  628. #
  629.  
  630. # List of stores enabled (list value)
  631. #stores = file,http
  632. stores = glance.store.swift.Store,glance.store.http.Store
  633.  
  634. # Default scheme to use to store image data. The scheme must be
  635. # registered by one of the stores defined by the 'stores' config
  636. # option. (string value)
  637. #default_store = file
  638. default_store = swift
  639.  
  640. # Minimum interval seconds to execute updating dynamic storage
  641. # capabilities based on backend status then. It's not a periodic
  642. # routine, the update logic will be executed only when interval
  643. # seconds elapsed and an operation of store has triggered. The feature
  644. # will be enabled only when the option value greater then zero.
  645. # (integer value)
  646. #store_capabilities_update_min_interval = 0
  647.  
  648. #
  649. # From glance.store
  650. #
  651.  
  652. # Images will be chunked into objects of this size (in megabytes). For
  653. # best performance, this should be a power of two. (integer value)
  654. #sheepdog_store_chunk_size = 64
  655.  
  656. # Port of sheep daemon. (integer value)
  657. #sheepdog_store_port = 7000
  658.  
  659. # IP address of sheep daemon. (string value)
  660. #sheepdog_store_address = localhost
  661.  
  662. # RADOS images will be chunked into objects of this size (in
  663. # megabytes). For best performance, this should be a power of two.
  664. # (integer value)
  665. #rbd_store_chunk_size = 8
  666.  
  667. # RADOS pool in which images are stored. (string value)
  668. #rbd_store_pool = images
  669.  
  670. # RADOS user to authenticate as (only applicable if using Cephx. If
  671. # <None>, a default will be chosen based on the client. section in
  672. # rbd_store_ceph_conf) (string value)
  673. #rbd_store_user = <None>
  674.  
  675. # Ceph configuration file path. If <None>, librados will locate the
  676. # default config. If using cephx authentication, this file should
  677. # include a reference to the right keyring in a client.<USER> section
  678. # (string value)
  679. #rbd_store_ceph_conf = /etc/ceph/ceph.conf
  680.  
  681. # Timeout value (in seconds) used when connecting to ceph cluster. If
  682. # value <= 0, no timeout is set and default librados value is used.
  683. # (integer value)
  684. #rados_connect_timeout = 0
  685.  
  686. # The host where the S3 server is listening. (string value)
  687. #s3_store_host = <None>
  688.  
  689. # The S3 query token access key. (string value)
  690. #s3_store_access_key = <None>
  691.  
  692. # The S3 query token secret key. (string value)
  693. #s3_store_secret_key = <None>
  694.  
  695. # The S3 bucket to be used to store the Glance data. (string value)
  696. #s3_store_bucket = <None>
  697.  
  698. # The local directory where uploads will be staged before they are
  699. # transferred into S3. (string value)
  700. #s3_store_object_buffer_dir = <None>
  701.  
  702. # A boolean to determine if the S3 bucket should be created on upload
  703. # if it does not exist or if an error should be returned to the user.
  704. # (boolean value)
  705. #s3_store_create_bucket_on_put = false
  706.  
  707. # The S3 calling format used to determine the bucket. Either subdomain
  708. # or path can be used. (string value)
  709. #s3_store_bucket_url_format = subdomain
  710.  
  711. # What size, in MB, should S3 start chunking image files and do a
  712. # multipart upload in S3. (integer value)
  713. #s3_store_large_object_size = 100
  714.  
  715. # What multipart upload part size, in MB, should S3 use when uploading
  716. # parts. The size must be greater than or equal to 5M. (integer value)
  717. #s3_store_large_object_chunk_size = 10
  718.  
  719. # The number of thread pools to perform a multipart upload in S3.
  720. # (integer value)
  721. #s3_store_thread_pools = 10
  722.  
  723. # Hostname or IP address of the instance to connect to, or a mongodb
  724. # URI, or a list of hostnames / mongodb URIs. If host is an IPv6
  725. # literal it must be enclosed in '[' and ']' characters following the
  726. # RFC2732 URL syntax (e.g. '[::1]' for localhost) (string value)
  727. #mongodb_store_uri = <None>
  728.  
  729. # Database to use (string value)
  730. #mongodb_store_db = <None>
  731.  
  732. # Info to match when looking for cinder in the service catalog. Format
  733. # is : separated values of the form:
  734. # <service_type>:<service_name>:<endpoint_type> (string value)
  735. #cinder_catalog_info = volume:cinder:publicURL
  736.  
  737. # Override service catalog lookup with template for cinder endpoint
  738. # e.g. http://localhost:8776/v1/%(project_id)s (string value)
  739. #cinder_endpoint_template = <None>
  740.  
  741. # Region name of this node (string value)
  742. #os_region_name = <None>
  743. os_region_name = RegionOne
  744.  
  745. # Location of ca certicates file to use for cinder client requests.
  746. # (string value)
  747. #cinder_ca_certificates_file = <None>
  748.  
  749. # Number of cinderclient retries on failed http calls (integer value)
  750. #cinder_http_retries = 3
  751.  
  752. # Allow to perform insecure SSL requests to cinder (boolean value)
  753. #cinder_api_insecure = false
  754.  
  755. # Directory to which the Filesystem backend store writes images.
  756. # (string value)
  757. #filesystem_store_datadir = <None>
  758.  
  759. # List of directories and its priorities to which the Filesystem
  760. # backend store writes images. (multi valued)
  761. #filesystem_store_datadirs =
  762.  
  763. # The path to a file which contains the metadata to be returned with
  764. # any location associated with this store. The file must contain a
  765. # valid JSON object. The object should contain the keys 'id' and
  766. # 'mountpoint'. The value for both keys should be 'string'. (string
  767. # value)
  768. #filesystem_store_metadata_file = <None>
  769.  
  770. # The required permission for created image file. In this way the user
  771. # other service used, e.g. Nova, who consumes the image could be the
  772. # exclusive member of the group that owns the files created. Assigning
  773. # it less then or equal to zero means don't change the default
  774. # permission of the file. This value will be decoded as an octal
  775. # digit. (integer value)
  776. #filesystem_store_file_perm = 0
  777.  
  778. # Version of the authentication service to use. Valid versions are 2
  779. # for keystone and 1 for swauth and rackspace. (deprecated) (string
  780. # value)
  781. #swift_store_auth_version = 2
  782. swift_store_auth_version = 2
  783.  
  784. # If True, swiftclient won't check for a valid SSL certificate when
  785. # authenticating. (boolean value)
  786. #swift_store_auth_insecure = false
  787.  
  788. # A string giving the CA certificate file to use in SSL connections
  789. # for verifying certs. (string value)
  790. #swift_store_cacert = <None>
  791.  
  792. # The region of the swift endpoint to be used for single tenant. This
  793. # setting is only necessary if the tenant has multiple swift
  794. # endpoints. (string value)
  795. #swift_store_region = <None>
  796. swift_store_region = RegionOne
  797.  
  798. # If set, the configured endpoint will be used. If None, the storage
  799. # url from the auth response will be used. (string value)
  800. #swift_store_endpoint = <None>
  801.  
  802. # A string giving the endpoint type of the swift service to use
  803. # (publicURL, adminURL or internalURL). This setting is only used if
  804. # swift_store_auth_version is 2. (string value)
  805. #swift_store_endpoint_type = publicURL
  806. swift_store_endpoint_type = internalURL
  807.  
  808. # A string giving the service type of the swift service to use. This
  809. # setting is only used if swift_store_auth_version is 2. (string
  810. # value)
  811. #swift_store_service_type = object-store
  812.  
  813. # Container within the account that the account should use for storing
  814. # images in Swift when using single container mode. In multiple
  815. # container mode, this will be the prefix for all containers. (string
  816. # value)
  817. #swift_store_container = glance
  818. swift_store_container = glance
  819.  
  820. # The size, in MB, that Glance will start chunking image files and do
  821. # a large object manifest in Swift. (integer value)
  822. #swift_store_large_object_size = 5120
  823. swift_store_large_object_size = 5120
  824.  
  825. # The amount of data written to a temporary disk buffer during the
  826. # process of chunking the image file. (integer value)
  827. #swift_store_large_object_chunk_size = 200
  828.  
  829. # A boolean value that determines if we create the container if it
  830. # does not exist. (boolean value)
  831. #swift_store_create_container_on_put = false
  832. swift_store_create_container_on_put = True
  833.  
  834. # If set to True, enables multi-tenant storage mode which causes
  835. # Glance images to be stored in tenant specific Swift accounts.
  836. # (boolean value)
  837. #swift_store_multi_tenant = false
  838.  
  839. # When set to 0, a single-tenant store will only use one container to
  840. # store all images. When set to an integer value between 1 and 32, a
  841. # single-tenant store will use multiple containers to store images,
  842. # and this value will determine how many containers are created.Used
  843. # only when swift_store_multi_tenant is disabled. The total number of
  844. # containers that will be used is equal to 16^N, so if this config
  845. # option is set to 2, then 16^2=256 containers will be used to store
  846. # images. (integer value)
  847. #swift_store_multiple_containers_seed = 0
  848.  
  849. # A list of tenants that will be granted read/write access on all
  850. # Swift containers created by Glance in multi-tenant mode. (list
  851. # value)
  852. #swift_store_admin_tenants =
  853.  
  854. # If set to False, disables SSL layer compression of https swift
  855. # requests. Setting to False may improve performance for images which
  856. # are already in a compressed format, eg qcow2. (boolean value)
  857. #swift_store_ssl_compression = true
  858.  
  859. # The number of times a Swift download will be retried before the
  860. # request fails. (integer value)
  861. #swift_store_retry_get_count = 0
  862.  
  863. # The reference to the default swift account/backing store parameters
  864. # to use for adding new images. (string value)
  865. #default_swift_reference = ref1
  866.  
  867. # The address where the Swift authentication service is
  868. # listening.(deprecated) (string value)
  869. #swift_store_auth_address = <None>
  870. swift_store_auth_address = http://10.216.110.2:5000/v2.0/
  871.  
  872. # The user to authenticate against the Swift authentication service
  873. # (deprecated) (string value)
  874. #swift_store_user = <None>
  875. swift_store_user = services:glance
  876.  
  877. # Auth key for the user authenticating against the Swift
  878. # authentication service. (deprecated) (string value)
  879. #swift_store_key = <None>
  880. swift_store_key = jD6U17YT
  881.  
  882. # The config file that has the swift account(s)configs. (string value)
  883. #swift_store_config_file = <None>
  884.  
  885. # ESX/ESXi or vCenter Server target system. The server value can be an
  886. # IP address or a DNS name. (string value)
  887. #vmware_server_host = <None>
  888.  
  889. # Username for authenticating with VMware ESX/VC server. (string
  890. # value)
  891. #vmware_server_username = <None>
  892.  
  893. # Password for authenticating with VMware ESX/VC server. (string
  894. # value)
  895. #vmware_server_password = <None>
  896.  
  897. # DEPRECATED. Inventory path to a datacenter. If the
  898. # vmware_server_host specified is an ESX/ESXi, the
  899. # vmware_datacenter_path is optional. If specified, it should be "ha-
  900. # datacenter". This option is deprecated in favor of vmware_datastores
  901. # and will be removed in the Liberty release. (string value)
  902. #vmware_datacenter_path = ha-datacenter
  903.  
  904. # DEPRECATED. Datastore associated with the datacenter. This option is
  905. # deprecated in favor of vmware_datastores and will be removed in the
  906. # Liberty release. (string value)
  907. #vmware_datastore_name = <None>
  908.  
  909. # Number of times VMware ESX/VC server API must be retried upon
  910. # connection related issues. (integer value)
  911. #vmware_api_retry_count = 10
  912.  
  913. # The interval used for polling remote tasks invoked on VMware ESX/VC
  914. # server. (integer value)
  915. #vmware_task_poll_interval = 5
  916.  
  917. # The name of the directory where the glance images will be stored in
  918. # the VMware datastore. (string value)
  919. #vmware_store_image_dir = /openstack_glance
  920.  
  921. # Allow to perform insecure SSL requests to ESX/VC. (boolean value)
  922. #vmware_api_insecure = false
  923.  
  924. # A list of datastores where the image can be stored. This option may
  925. # be specified multiple times for specifying multiple datastores.
  926. # Either one of vmware_datastore_name or vmware_datastores is
  927. # required. The datastore name should be specified after its
  928. # datacenter path, seperated by ":". An optional weight may be given
  929. # after the datastore name, seperated again by ":". Thus, the required
  930. # format becomes <datacenter_path>:<datastore_name>:<optional_weight>.
  931. # When adding an image, the datastore with highest weight will be
  932. # selected, unless there is not enough free space available in cases
  933. # where the image size is already known. If no weight is given, it is
  934. # assumed to be zero and the directory will be considered for
  935. # selection last. If multiple datastores have the same weight, then
  936. # the one with the most free space available is selected. (multi
  937. # valued)
  938. #vmware_datastores =
  939.  
  940.  
  941. [image_format]
  942.  
  943. #
  944. # From glance.api
  945. #
  946.  
  947. # Supported values for the 'container_format' image attribute (list
  948. # value)
  949. # Deprecated group/name - [DEFAULT]/container_formats
  950. #container_formats = ami,ari,aki,bare,ovf,ova
  951.  
  952. # Supported values for the 'disk_format' image attribute (list value)
  953. # Deprecated group/name - [DEFAULT]/disk_formats
  954. #disk_formats = ami,ari,aki,vhd,vmdk,raw,qcow2,vdi,iso
  955.  
  956.  
  957. [matchmaker_redis]
  958.  
  959. #
  960. # From oslo.messaging
  961. #
  962.  
  963. # Host to locate redis. (string value)
  964. #host = 127.0.0.1
  965.  
  966. # Use this port to connect to redis host. (integer value)
  967. #port = 6379
  968.  
  969. # Password for Redis server (optional). (string value)
  970. #password = <None>
  971.  
  972.  
  973. [matchmaker_ring]
  974.  
  975. #
  976. # From oslo.messaging
  977. #
  978.  
  979. # Matchmaker ring file (JSON). (string value)
  980. # Deprecated group/name - [DEFAULT]/matchmaker_ringfile
  981. #ringfile = /etc/oslo/matchmaker_ring.json
  982.  
  983.  
  984. [oslo_concurrency]
  985.  
  986. #
  987. # From oslo.concurrency
  988. #
  989.  
  990. # Enables or disables inter-process locks. (boolean value)
  991. # Deprecated group/name - [DEFAULT]/disable_process_locking
  992. #disable_process_locking = false
  993.  
  994. # Directory to use for lock files. For security, the specified
  995. # directory should only be writable by the user running the processes
  996. # that need locking. Defaults to environment variable OSLO_LOCK_PATH.
  997. # If external locks are used, a lock path must be set. (string value)
  998. # Deprecated group/name - [DEFAULT]/lock_path
  999. #lock_path = <None>
  1000.  
  1001.  
  1002. [oslo_messaging_amqp]
  1003.  
  1004. #
  1005. # From oslo.messaging
  1006. #
  1007.  
  1008. # address prefix used when sending to a specific server (string value)
  1009. # Deprecated group/name - [amqp1]/server_request_prefix
  1010. #server_request_prefix = exclusive
  1011.  
  1012. # address prefix used when broadcasting to all servers (string value)
  1013. # Deprecated group/name - [amqp1]/broadcast_prefix
  1014. #broadcast_prefix = broadcast
  1015.  
  1016. # address prefix when sending to any server in group (string value)
  1017. # Deprecated group/name - [amqp1]/group_request_prefix
  1018. #group_request_prefix = unicast
  1019.  
  1020. # Name for the AMQP container (string value)
  1021. # Deprecated group/name - [amqp1]/container_name
  1022. #container_name = <None>
  1023.  
  1024. # Timeout for inactive connections (in seconds) (integer value)
  1025. # Deprecated group/name - [amqp1]/idle_timeout
  1026. #idle_timeout = 0
  1027.  
  1028. # Debug: dump AMQP frames to stdout (boolean value)
  1029. # Deprecated group/name - [amqp1]/trace
  1030. #trace = false
  1031.  
  1032. # CA certificate PEM file for verifing server certificate (string
  1033. # value)
  1034. # Deprecated group/name - [amqp1]/ssl_ca_file
  1035. #ssl_ca_file =
  1036.  
  1037. # Identifying certificate PEM file to present to clients (string
  1038. # value)
  1039. # Deprecated group/name - [amqp1]/ssl_cert_file
  1040. #ssl_cert_file =
  1041.  
  1042. # Private key PEM file used to sign cert_file certificate (string
  1043. # value)
  1044. # Deprecated group/name - [amqp1]/ssl_key_file
  1045. #ssl_key_file =
  1046.  
  1047. # Password for decrypting ssl_key_file (if encrypted) (string value)
  1048. # Deprecated group/name - [amqp1]/ssl_key_password
  1049. #ssl_key_password = <None>
  1050.  
  1051. # Accept clients using either SSL or plain TCP (boolean value)
  1052. # Deprecated group/name - [amqp1]/allow_insecure_clients
  1053. #allow_insecure_clients = false
  1054.  
  1055.  
  1056. [oslo_messaging_qpid]
  1057.  
  1058. #
  1059. # From oslo.messaging
  1060. #
  1061.  
  1062. # Use durable queues in AMQP. (boolean value)
  1063. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  1064. #amqp_durable_queues = false
  1065.  
  1066. # Auto-delete queues in AMQP. (boolean value)
  1067. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  1068. #amqp_auto_delete = false
  1069.  
  1070. # Size of RPC connection pool. (integer value)
  1071. # Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
  1072. #rpc_conn_pool_size = 30
  1073.  
  1074. # Qpid broker hostname. (string value)
  1075. # Deprecated group/name - [DEFAULT]/qpid_hostname
  1076. #qpid_hostname = localhost
  1077.  
  1078. # Qpid broker port. (integer value)
  1079. # Deprecated group/name - [DEFAULT]/qpid_port
  1080. #qpid_port = 5672
  1081.  
  1082. # Qpid HA cluster host:port pairs. (list value)
  1083. # Deprecated group/name - [DEFAULT]/qpid_hosts
  1084. #qpid_hosts = $qpid_hostname:$qpid_port
  1085.  
  1086. # Username for Qpid connection. (string value)
  1087. # Deprecated group/name - [DEFAULT]/qpid_username
  1088. #qpid_username =
  1089.  
  1090. # Password for Qpid connection. (string value)
  1091. # Deprecated group/name - [DEFAULT]/qpid_password
  1092. #qpid_password =
  1093.  
  1094. # Space separated list of SASL mechanisms to use for auth. (string
  1095. # value)
  1096. # Deprecated group/name - [DEFAULT]/qpid_sasl_mechanisms
  1097. #qpid_sasl_mechanisms =
  1098.  
  1099. # Seconds between connection keepalive heartbeats. (integer value)
  1100. # Deprecated group/name - [DEFAULT]/qpid_heartbeat
  1101. #qpid_heartbeat = 60
  1102.  
  1103. # Transport to use, either 'tcp' or 'ssl'. (string value)
  1104. # Deprecated group/name - [DEFAULT]/qpid_protocol
  1105. #qpid_protocol = tcp
  1106.  
  1107. # Whether to disable the Nagle algorithm. (boolean value)
  1108. # Deprecated group/name - [DEFAULT]/qpid_tcp_nodelay
  1109. #qpid_tcp_nodelay = true
  1110.  
  1111. # The number of prefetched messages held by receiver. (integer value)
  1112. # Deprecated group/name - [DEFAULT]/qpid_receiver_capacity
  1113. #qpid_receiver_capacity = 1
  1114.  
  1115. # The qpid topology version to use. Version 1 is what was originally
  1116. # used by impl_qpid. Version 2 includes some backwards-incompatible
  1117. # changes that allow broker federation to work. Users should update
  1118. # to version 2 when they are able to take everything down, as it
  1119. # requires a clean break. (integer value)
  1120. # Deprecated group/name - [DEFAULT]/qpid_topology_version
  1121. #qpid_topology_version = 1
  1122.  
  1123.  
  1124. [oslo_messaging_rabbit]
  1125.  
  1126. #
  1127. # From oslo.messaging
  1128. #
  1129.  
  1130. # Use durable queues in AMQP. (boolean value)
  1131. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  1132. #amqp_durable_queues = false
  1133.  
  1134. # Auto-delete queues in AMQP. (boolean value)
  1135. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  1136. #amqp_auto_delete = false
  1137.  
  1138. # Size of RPC connection pool. (integer value)
  1139. # Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
  1140. #rpc_conn_pool_size = 30
  1141.  
  1142. # SSL version to use (valid only if SSL enabled). Valid values are
  1143. # TLSv1 and SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be
  1144. # available on some distributions. (string value)
  1145. # Deprecated group/name - [DEFAULT]/kombu_ssl_version
  1146. #kombu_ssl_version =
  1147.  
  1148. # SSL key file (valid only if SSL enabled). (string value)
  1149. # Deprecated group/name - [DEFAULT]/kombu_ssl_keyfile
  1150. #kombu_ssl_keyfile =
  1151.  
  1152. # SSL cert file (valid only if SSL enabled). (string value)
  1153. # Deprecated group/name - [DEFAULT]/kombu_ssl_certfile
  1154. #kombu_ssl_certfile =
  1155.  
  1156. # SSL certification authority file (valid only if SSL enabled).
  1157. # (string value)
  1158. # Deprecated group/name - [DEFAULT]/kombu_ssl_ca_certs
  1159. #kombu_ssl_ca_certs =
  1160.  
  1161. # How long to wait before reconnecting in response to an AMQP consumer
  1162. # cancel notification. (floating point value)
  1163. # Deprecated group/name - [DEFAULT]/kombu_reconnect_delay
  1164. #kombu_reconnect_delay = 1.0
  1165.  
  1166. # The RabbitMQ broker address where a single node is used. (string
  1167. # value)
  1168. # Deprecated group/name - [DEFAULT]/rabbit_host
  1169. #rabbit_host = localhost
  1170.  
  1171. # The RabbitMQ broker port where a single node is used. (integer
  1172. # value)
  1173. # Deprecated group/name - [DEFAULT]/rabbit_port
  1174. #rabbit_port = 5672
  1175.  
  1176. # RabbitMQ HA cluster host:port pairs. (list value)
  1177. # Deprecated group/name - [DEFAULT]/rabbit_hosts
  1178. #rabbit_hosts = $rabbit_host:$rabbit_port
  1179. rabbit_hosts = 10.216.110.3:5673
  1180.  
  1181. # Connect over SSL for RabbitMQ. (boolean value)
  1182. # Deprecated group/name - [DEFAULT]/rabbit_use_ssl
  1183. #rabbit_use_ssl = false
  1184. rabbit_use_ssl = False
  1185.  
  1186. # The RabbitMQ userid. (string value)
  1187. # Deprecated group/name - [DEFAULT]/rabbit_userid
  1188. #rabbit_userid = guest
  1189. rabbit_userid = nova
  1190.  
  1191. # The RabbitMQ password. (string value)
  1192. # Deprecated group/name - [DEFAULT]/rabbit_password
  1193. #rabbit_password = guest
  1194. rabbit_password = Z1TnybHu
  1195.  
  1196. # The RabbitMQ login method. (string value)
  1197. # Deprecated group/name - [DEFAULT]/rabbit_login_method
  1198. #rabbit_login_method = AMQPLAIN
  1199.  
  1200. # The RabbitMQ virtual host. (string value)
  1201. # Deprecated group/name - [DEFAULT]/rabbit_virtual_host
  1202. #rabbit_virtual_host = /
  1203. rabbit_virtual_host = /
  1204.  
  1205. # How frequently to retry connecting with RabbitMQ. (integer value)
  1206. #rabbit_retry_interval = 1
  1207.  
  1208. # How long to backoff for between retries when connecting to RabbitMQ.
  1209. # (integer value)
  1210. # Deprecated group/name - [DEFAULT]/rabbit_retry_backoff
  1211. #rabbit_retry_backoff = 2
  1212.  
  1213. # Maximum number of RabbitMQ connection retries. Default is 0
  1214. # (infinite retry count). (integer value)
  1215. # Deprecated group/name - [DEFAULT]/rabbit_max_retries
  1216. #rabbit_max_retries = 0
  1217.  
  1218. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change this
  1219. # option, you must wipe the RabbitMQ database. (boolean value)
  1220. # Deprecated group/name - [DEFAULT]/rabbit_ha_queues
  1221. #rabbit_ha_queues = false
  1222. rabbit_ha_queues = True
  1223.  
  1224. # Number of seconds after which the Rabbit broker is considered down
  1225. # if heartbeat's keep-alive fails (0 disables the heartbeat, >0
  1226. # enables it. Enabling heartbeats requires kombu>=3.0.7 and
  1227. # amqp>=1.4.0). EXPERIMENTAL (integer value)
  1228. # Deprecated group/name - [DEFAULT]/rabbit_heartbeat
  1229. #heartbeat_timeout_threshold = 60
  1230.  
  1231. # How often times during the heartbeat_timeout_threshold we check the
  1232. # heartbeat. (integer value)
  1233. #heartbeat_rate = 2
  1234.  
  1235. # Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake
  1236. # (boolean value)
  1237. # Deprecated group/name - [DEFAULT]/fake_rabbit
  1238. #fake_rabbit = false
  1239. rabbit_notification_exchange=glance
  1240. rabbit_notification_topic=notifications
  1241.  
  1242.  
  1243. [oslo_policy]
  1244.  
  1245. #
  1246. # From oslo.policy
  1247. #
  1248.  
  1249. # The JSON file that defines policies. (string value)
  1250. # Deprecated group/name - [DEFAULT]/policy_file
  1251. #policy_file = policy.json
  1252.  
  1253. # Default rule. Enforced when a requested rule is not found. (string
  1254. # value)
  1255. # Deprecated group/name - [DEFAULT]/policy_default_rule
  1256. #policy_default_rule = default
  1257.  
  1258. # Directories where policy configuration files are stored. They can be
  1259. # relative to any directory in the search path defined by the
  1260. # config_dir option, or absolute paths. The file defined by
  1261. # policy_file must exist for these directories to be searched.
  1262. # Missing or empty directories are ignored. (multi valued)
  1263. # Deprecated group/name - [DEFAULT]/policy_dirs
  1264. #policy_dirs = policy.d
  1265.  
  1266.  
  1267. [paste_deploy]
  1268.  
  1269. #
  1270. # From glance.api
  1271. #
  1272.  
  1273. # Partial name of a pipeline in your paste configuration file with the
  1274. # service name removed. For example, if your paste section name is
  1275. # [pipeline:glance-api-keystone] use the value "keystone" (string
  1276. # value)
  1277. #flavor = <None>
  1278. flavor = keystone
  1279.  
  1280. # Name of the paste configuration file. (string value)
  1281. #config_file = <None>
  1282.  
  1283.  
  1284. [store_type_location_strategy]
  1285.  
  1286. #
  1287. # From glance.api
  1288. #
  1289.  
  1290. # The store names to use to get store preference order. The name must
  1291. # be registered by one of the stores defined by the 'stores' config
  1292. # option. This option will be applied when you using 'store_type'
  1293. # option as image location strategy defined by the 'location_strategy'
  1294. # config option. (list value)
  1295. #store_type_preference =
  1296.  
  1297.  
  1298. [task]
  1299.  
  1300. #
  1301. # From glance.api
  1302. #
  1303.  
  1304. # Time in hours for which a task lives after, either succeeding or
  1305. # failing (integer value)
  1306. # Deprecated group/name - [DEFAULT]/task_time_to_live
  1307. #task_time_to_live = 48
  1308.  
  1309. # Specifies which task executor to be used to run the task scripts.
  1310. # (string value)
  1311. #task_executor = taskflow
  1312.  
  1313. # Work dir for asynchronous task operations. The directory set here
  1314. # will be used to operate over images - normally before they are
  1315. # imported in the destination store. When providing work dir, make
  1316. # sure enough space is provided for concurrent tasks to run
  1317. # efficiently without running out of space. A rough estimation can be
  1318. # done by multiplying the number of `max_workers` - or the N of
  1319. # workers running - by an average image size (e.g 500MB). The image
  1320. # size estimation should be done based on the average size in your
  1321. # deployment. Note that depending on the tasks running you may need to
  1322. # multiply this number by some factor depending on what the task does.
  1323. # For example, you may want to double the available size if image
  1324. # conversion is enabled. All this being said, remember these are just
  1325. # estimations and you should do them based on the worst case scenario
  1326. # and be prepared to act in case they were wrong. (string value)
  1327. #work_dir = <None>
  1328.  
  1329. [keystone_authtoken]
  1330. auth_port=35357
  1331. token_cache_time=-1
  1332. auth_host=10.216.110.2
  1333. admin_password=jD6U17YT
  1334. admin_tenant_name=services
  1335. auth_protocol=http
  1336. auth_uri=http://10.216.110.2:5000/
  1337. admin_user=glance
  1338. signing_dir=/tmp/keystone-signing-glance
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement