Advertisement
Mark_E

Cinder config

Feb 25th, 2015
742
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 79.13 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. #
  4. # Options defined in oslo.messaging
  5. #
  6.  
  7. # Use durable queues in AMQP. (boolean value)
  8. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  9. #amqp_durable_queues=false
  10.  
  11. # Auto-delete queues in AMQP. (boolean value)
  12. #amqp_auto_delete=false
  13.  
  14. # Size of RPC connection pool. (integer value)
  15. #rpc_conn_pool_size=30
  16.  
  17. # Qpid broker hostname. (string value)
  18. #qpid_hostname=localhost
  19.  
  20. # Qpid broker port. (integer value)
  21. #qpid_port=5672
  22.  
  23. # Qpid HA cluster host:port pairs. (list value)
  24. #qpid_hosts=$qpid_hostname:$qpid_port
  25.  
  26. # Username for Qpid connection. (string value)
  27. #qpid_username=
  28.  
  29. # Password for Qpid connection. (string value)
  30. #qpid_password=
  31.  
  32. # Space separated list of SASL mechanisms to use for auth.
  33. # (string value)
  34. #qpid_sasl_mechanisms=
  35.  
  36. # Seconds between connection keepalive heartbeats. (integer
  37. # value)
  38. #qpid_heartbeat=60
  39.  
  40. # Transport to use, either 'tcp' or 'ssl'. (string value)
  41. #qpid_protocol=tcp
  42.  
  43. # Whether to disable the Nagle algorithm. (boolean value)
  44. #qpid_tcp_nodelay=true
  45.  
  46. # The number of prefetched messages held by receiver. (integer
  47. # value)
  48. #qpid_receiver_capacity=1
  49.  
  50. # The qpid topology version to use. Version 1 is what was
  51. # originally used by impl_qpid. Version 2 includes some
  52. # backwards-incompatible changes that allow broker federation
  53. # to work. Users should update to version 2 when they are
  54. # able to take everything down, as it requires a clean break.
  55. # (integer value)
  56. #qpid_topology_version=1
  57.  
  58. # SSL version to use (valid only if SSL enabled). valid values
  59. # are TLSv1 and SSLv23. SSLv2 and SSLv3 may be available on
  60. # some distributions. (string value)
  61. #kombu_ssl_version=
  62.  
  63. # SSL key file (valid only if SSL enabled). (string value)
  64. #kombu_ssl_keyfile=
  65.  
  66. # SSL cert file (valid only if SSL enabled). (string value)
  67. #kombu_ssl_certfile=
  68.  
  69. # SSL certification authority file (valid only if SSL
  70. # enabled). (string value)
  71. #kombu_ssl_ca_certs=
  72.  
  73. # How long to wait before reconnecting in response to an AMQP
  74. # consumer cancel notification. (floating point value)
  75. #kombu_reconnect_delay=1.0
  76.  
  77. # The RabbitMQ broker address where a single node is used.
  78. # (string value)
  79. rabbit_host=deepthought
  80.  
  81. # The RabbitMQ broker port where a single node is used.
  82. # (integer value)
  83. #rabbit_port=5672
  84.  
  85. # RabbitMQ HA cluster host:port pairs. (list value)
  86. #rabbit_hosts=$rabbit_host:$rabbit_port
  87.  
  88. # Connect over SSL for RabbitMQ. (boolean value)
  89. #rabbit_use_ssl=false
  90.  
  91. # The RabbitMQ userid. (string value)
  92. #rabbit_userid=guest
  93.  
  94. # The RabbitMQ password. (string value)
  95. rabbit_password=<snip>
  96.  
  97. # The RabbitMQ login method. (string value)
  98. #rabbit_login_method=AMQPLAIN
  99.  
  100. # The RabbitMQ virtual host. (string value)
  101. #rabbit_virtual_host=/
  102.  
  103. # How frequently to retry connecting with RabbitMQ. (integer
  104. # value)
  105. #rabbit_retry_interval=1
  106.  
  107. # How long to backoff for between retries when connecting to
  108. # RabbitMQ. (integer value)
  109. #rabbit_retry_backoff=2
  110.  
  111. # Maximum number of RabbitMQ connection retries. Default is 0
  112. # (infinite retry count). (integer value)
  113. #rabbit_max_retries=0
  114.  
  115. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change
  116. # this option, you must wipe the RabbitMQ database. (boolean
  117. # value)
  118. #rabbit_ha_queues=false
  119.  
  120. # Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake
  121. # (boolean value)
  122. #fake_rabbit=false
  123.  
  124. # ZeroMQ bind address. Should be a wildcard (*), an ethernet
  125. # interface, or IP. The "host" option should point or resolve
  126. # to this address. (string value)
  127. #rpc_zmq_bind_address=*
  128.  
  129. # MatchMaker driver. (string value)
  130. #rpc_zmq_matchmaker=oslo.messaging._drivers.matchmaker.MatchMakerLocalhost
  131.  
  132. # ZeroMQ receiver listening port. (integer value)
  133. #rpc_zmq_port=9501
  134.  
  135. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  136. #rpc_zmq_contexts=1
  137.  
  138. # Maximum number of ingress messages to locally buffer per
  139. # topic. Default is unlimited. (integer value)
  140. #rpc_zmq_topic_backlog=<None>
  141.  
  142. # Directory for holding IPC sockets. (string value)
  143. #rpc_zmq_ipc_dir=/var/run/openstack
  144.  
  145. # Name of this node. Must be a valid hostname, FQDN, or IP
  146. # address. Must match "host" option, if running Nova. (string
  147. # value)
  148. #rpc_zmq_host=cinder
  149.  
  150. # Seconds to wait before a cast expires (TTL). Only supported
  151. # by impl_zmq. (integer value)
  152. #rpc_cast_timeout=30
  153.  
  154. # Heartbeat frequency. (integer value)
  155. #matchmaker_heartbeat_freq=300
  156.  
  157. # Heartbeat time-to-live. (integer value)
  158. #matchmaker_heartbeat_ttl=600
  159.  
  160. # Size of RPC greenthread pool. (integer value)
  161. #rpc_thread_pool_size=64
  162.  
  163. # Driver or drivers to handle sending notifications. (multi
  164. # valued)
  165. notification_driver=cinder.openstack.common.notifier.rpc_notifier
  166.  
  167. # AMQP topic used for OpenStack notifications. (list value)
  168. # Deprecated group/name - [rpc_notifier2]/topics
  169. #notification_topics=notifications
  170.  
  171. # Seconds to wait for a response from a call. (integer value)
  172. #rpc_response_timeout=60
  173.  
  174. # A URL representing the messaging driver to use and its full
  175. # configuration. If not set, we fall back to the rpc_backend
  176. # option and driver specific configuration. (string value)
  177. #transport_url=<None>
  178.  
  179. # The messaging driver to use, defaults to rabbit. Other
  180. # drivers include qpid and zmq. (string value)
  181. rpc_backend=rabbit
  182.  
  183. # The default exchange under which topics are scoped. May be
  184. # overridden by an exchange name specified in the
  185. # transport_url option. (string value)
  186. control_exchange=cinder
  187.  
  188.  
  189. #
  190. # Options defined in cinder.exception
  191. #
  192.  
  193. # Make exception message format errors fatal. (boolean value)
  194. #fatal_exception_format_errors=false
  195.  
  196.  
  197. #
  198. # Options defined in cinder.quota
  199. #
  200.  
  201. # Number of volumes allowed per project (integer value)
  202. #quota_volumes=10
  203.  
  204. # Number of volume snapshots allowed per project (integer
  205. # value)
  206. #quota_snapshots=10
  207.  
  208. # Number of consistencygroups allowed per project (integer
  209. # value)
  210. #quota_consistencygroups=10
  211.  
  212. # Total amount of storage, in gigabytes, allowed for volumes
  213. # and snapshots per project (integer value)
  214. #quota_gigabytes=1000
  215.  
  216. # Number of volume backups allowed per project (integer value)
  217. #quota_backups=10
  218.  
  219. # Total amount of storage, in gigabytes, allowed for backups
  220. # per project (integer value)
  221. #quota_backup_gigabytes=1000
  222.  
  223. # Number of seconds until a reservation expires (integer
  224. # value)
  225. #reservation_expire=86400
  226.  
  227. # Count of reservations until usage is refreshed (integer
  228. # value)
  229. #until_refresh=0
  230.  
  231. # Number of seconds between subsequent usage refreshes
  232. # (integer value)
  233. #max_age=0
  234.  
  235. # Default driver to use for quota checks (string value)
  236. #quota_driver=cinder.quota.DbQuotaDriver
  237.  
  238. # Enables or disables use of default quota class with default
  239. # quota. (boolean value)
  240. #use_default_quota_class=true
  241.  
  242.  
  243. #
  244. # Options defined in cinder.service
  245. #
  246.  
  247. # Interval, in seconds, between nodes reporting state to
  248. # datastore (integer value)
  249. #report_interval=10
  250.  
  251. # Interval, in seconds, between running periodic tasks
  252. # (integer value)
  253. #periodic_interval=60
  254.  
  255. # Range, in seconds, to randomly delay when starting the
  256. # periodic task scheduler to reduce stampeding. (Disable by
  257. # setting to 0) (integer value)
  258. #periodic_fuzzy_delay=60
  259.  
  260. # IP address on which OpenStack Volume API listens (string
  261. # value)
  262. #osapi_volume_listen=0.0.0.0
  263.  
  264. # Port on which OpenStack Volume API listens (integer value)
  265. #osapi_volume_listen_port=8776
  266.  
  267. # Number of workers for OpenStack Volume API service. The
  268. # default is equal to the number of CPUs available. (integer
  269. # value)
  270. #osapi_volume_workers=<None>
  271.  
  272.  
  273. #
  274. # Options defined in cinder.ssh_utils
  275. #
  276.  
  277. # Option to enable strict host key checking. When set to
  278. # "True" Cinder will only connect to systems with a host key
  279. # present in the configured "ssh_hosts_key_file". When set to
  280. # "False" the host key will be saved upon first connection and
  281. # used for subsequent connections. Default=False (boolean
  282. # value)
  283. #strict_ssh_host_key_policy=false
  284.  
  285. # File containing SSH host keys for the systems with which
  286. # Cinder needs to communicate. OPTIONAL:
  287. # Default=$state_path/ssh_known_hosts (string value)
  288. #ssh_hosts_key_file=$state_path/ssh_known_hosts
  289.  
  290.  
  291. #
  292. # Options defined in cinder.test
  293. #
  294.  
  295. # File name of clean sqlite db (string value)
  296. #sqlite_clean_db=clean.sqlite
  297.  
  298.  
  299. #
  300. # Options defined in cinder.wsgi
  301. #
  302.  
  303. # Maximum line size of message headers to be accepted.
  304. # max_header_line may need to be increased when using large
  305. # tokens (typically those generated by the Keystone v3 API
  306. # with big service catalogs). (integer value)
  307. #max_header_line=16384
  308.  
  309. # If False, closes the client socket connection explicitly.
  310. # Setting it to True to maintain backward compatibility.
  311. # Recommended setting is set it to False. (boolean value)
  312. #wsgi_keep_alive=true
  313.  
  314. # Sets the value of TCP_KEEPALIVE (True/False) for each server
  315. # socket. (boolean value)
  316. #tcp_keepalive=true
  317.  
  318. # Sets the value of TCP_KEEPIDLE in seconds for each server
  319. # socket. Not supported on OS X. (integer value)
  320. #tcp_keepidle=600
  321.  
  322. # Sets the value of TCP_KEEPINTVL in seconds for each server
  323. # socket. Not supported on OS X. (integer value)
  324. #tcp_keepalive_interval=<None>
  325.  
  326. # Sets the value of TCP_KEEPCNT for each server socket. Not
  327. # supported on OS X. (integer value)
  328. #tcp_keepalive_count=<None>
  329.  
  330. # CA certificate file to use to verify connecting clients
  331. # (string value)
  332. #ssl_ca_file=<None>
  333.  
  334. # Certificate file to use when starting the server securely
  335. # (string value)
  336. #ssl_cert_file=<None>
  337.  
  338. # Private key file to use when starting the server securely
  339. # (string value)
  340. #ssl_key_file=<None>
  341.  
  342.  
  343. #
  344. # Options defined in cinder.api.common
  345. #
  346.  
  347. # The maximum number of items that a collection resource
  348. # returns in a single response (integer value)
  349. #osapi_max_limit=1000
  350.  
  351. # Base URL that will be presented to users in links to the
  352. # OpenStack Volume API (string value)
  353. # Deprecated group/name - [DEFAULT]/osapi_compute_link_prefix
  354. #osapi_volume_base_URL=<None>
  355.  
  356.  
  357. #
  358. # Options defined in cinder.api.middleware.auth
  359. #
  360.  
  361. # Treat X-Forwarded-For as the canonical remote address. Only
  362. # enable this if you have a sanitizing proxy. (boolean value)
  363. #use_forwarded_for=false
  364.  
  365.  
  366. #
  367. # Options defined in cinder.api.middleware.sizelimit
  368. #
  369.  
  370. # Max size for body of a request (integer value)
  371. #osapi_max_request_body_size=114688
  372.  
  373.  
  374. #
  375. # Options defined in cinder.backup.driver
  376. #
  377.  
  378. # Backup metadata version to be used when backing up volume
  379. # metadata. If this number is bumped, make sure the service
  380. # doing the restore supports the new version. (integer value)
  381. #backup_metadata_version=1
  382.  
  383.  
  384. #
  385. # Options defined in cinder.backup.drivers.ceph
  386. #
  387.  
  388. # Ceph configuration file to use. (string value)
  389. #backup_ceph_conf=/etc/ceph/ceph.conf
  390.  
  391. # The Ceph user to connect with. Default here is to use the
  392. # same user as for Cinder volumes. If not using cephx this
  393. # should be set to None. (string value)
  394. #backup_ceph_user=cinder
  395.  
  396. # The chunk size, in bytes, that a backup is broken into
  397. # before transfer to the Ceph object store. (integer value)
  398. #backup_ceph_chunk_size=134217728
  399.  
  400. # The Ceph pool where volume backups are stored. (string
  401. # value)
  402. #backup_ceph_pool=backups
  403.  
  404. # RBD stripe unit to use when creating a backup image.
  405. # (integer value)
  406. #backup_ceph_stripe_unit=0
  407.  
  408. # RBD stripe count to use when creating a backup image.
  409. # (integer value)
  410. #backup_ceph_stripe_count=0
  411.  
  412. # If True, always discard excess bytes when restoring volumes
  413. # i.e. pad with zeroes. (boolean value)
  414. #restore_discard_excess_bytes=true
  415.  
  416.  
  417. #
  418. # Options defined in cinder.backup.drivers.swift
  419. #
  420.  
  421. # The URL of the Swift endpoint (string value)
  422. #backup_swift_url=<None>
  423.  
  424. # Info to match when looking for swift in the service catalog.
  425. # Format is: separated values of the form:
  426. # <service_type>:<service_name>:<endpoint_type> - Only used if
  427. # backup_swift_url is unset (string value)
  428. #swift_catalog_info=object-store:swift:publicURL
  429.  
  430. # Swift authentication mechanism (string value)
  431. #backup_swift_auth=per_user
  432.  
  433. # Swift authentication version. Specify "1" for auth 1.0, or
  434. # "2" for auth 2.0 (string value)
  435. #backup_swift_auth_version=1
  436.  
  437. # Swift tenant/account name. Required when connecting to an
  438. # auth 2.0 system (string value)
  439. #backup_swift_tenant=<None>
  440.  
  441. # Swift user name (string value)
  442. #backup_swift_user=<None>
  443.  
  444. # Swift key for authentication (string value)
  445. #backup_swift_key=<None>
  446.  
  447. # The default Swift container to use (string value)
  448. #backup_swift_container=volumebackups
  449.  
  450. # The size in bytes of Swift backup objects (integer value)
  451. #backup_swift_object_size=52428800
  452.  
  453. # The number of retries to make for Swift operations (integer
  454. # value)
  455. #backup_swift_retry_attempts=3
  456.  
  457. # The backoff time in seconds between Swift retries (integer
  458. # value)
  459. #backup_swift_retry_backoff=2
  460.  
  461. # Compression algorithm (None to disable) (string value)
  462. #backup_compression_algorithm=zlib
  463.  
  464.  
  465. #
  466. # Options defined in cinder.backup.drivers.tsm
  467. #
  468.  
  469. # Volume prefix for the backup id when backing up to TSM
  470. # (string value)
  471. #backup_tsm_volume_prefix=backup
  472.  
  473. # TSM password for the running username (string value)
  474. #backup_tsm_password=password
  475.  
  476. # Enable or Disable compression for backups (boolean value)
  477. #backup_tsm_compression=true
  478.  
  479.  
  480. #
  481. # Options defined in cinder.backup.manager
  482. #
  483.  
  484. # Driver to use for backups. (string value)
  485. # Deprecated group/name - [DEFAULT]/backup_service
  486. #backup_driver=cinder.backup.drivers.swift
  487.  
  488.  
  489. #
  490. # Options defined in cinder.common.config
  491. #
  492.  
  493. # File name for the paste.deploy config for cinder-api (string
  494. # value)
  495. #api_paste_config=api-paste.ini
  496.  
  497. # Top-level directory for maintaining cinder's state (string
  498. # value)
  499. # Deprecated group/name - [DEFAULT]/pybasedir
  500. #state_path=/var/lib/cinder
  501.  
  502. # IP address of this host (string value)
  503. my_ip=10.1.99.250
  504.  
  505. # Default glance host name or IP (string value)
  506. glance_host=deepthought
  507.  
  508. # Default glance port (integer value)
  509. #glance_port=9292
  510.  
  511. # A list of the glance API servers available to cinder
  512. # ([hostname|ip]:port) (list value)
  513. #glance_api_servers=$glance_host:$glance_port
  514.  
  515. # Version of the glance API to use (integer value)
  516. #glance_api_version=1
  517.  
  518. # Number retries when downloading an image from glance
  519. # (integer value)
  520. #glance_num_retries=0
  521.  
  522. # Allow to perform insecure SSL (https) requests to glance
  523. # (boolean value)
  524. #glance_api_insecure=false
  525.  
  526. # Enables or disables negotiation of SSL layer compression. In
  527. # some cases disabling compression can improve data
  528. # throughput, such as when high network bandwidth is available
  529. # and you use compressed image formats like qcow2. (boolean
  530. # value)
  531. #glance_api_ssl_compression=false
  532.  
  533. # Location of ca certificates file to use for glance client
  534. # requests. (string value)
  535. #glance_ca_certificates_file=<None>
  536.  
  537. # http/https timeout value for glance operations. If no value
  538. # (None) is supplied here, the glanceclient default value is
  539. # used. (integer value)
  540. #glance_request_timeout=<None>
  541.  
  542. # The topic that scheduler nodes listen on (string value)
  543. #scheduler_topic=cinder-scheduler
  544.  
  545. # The topic that volume nodes listen on (string value)
  546. #volume_topic=cinder-volume
  547.  
  548. # The topic that volume backup nodes listen on (string value)
  549. #backup_topic=cinder-backup
  550.  
  551. # DEPRECATED: Deploy v1 of the Cinder API. (boolean value)
  552. #enable_v1_api=false
  553.  
  554. # Deploy v2 of the Cinder API. (boolean value)
  555. #enable_v2_api=true
  556.  
  557. # Enables or disables rate limit of the API. (boolean value)
  558. #api_rate_limit=true
  559.  
  560. # Specify list of extensions to load when using
  561. # osapi_volume_extension option with
  562. # cinder.api.contrib.select_extensions (list value)
  563. #osapi_volume_ext_list=
  564.  
  565. # osapi volume extension to load (multi valued)
  566. #osapi_volume_extension=cinder.api.contrib.standard_extensions
  567.  
  568. # Full class name for the Manager for volume (string value)
  569. #volume_manager=cinder.volume.manager.VolumeManager
  570.  
  571. # Full class name for the Manager for volume backup (string
  572. # value)
  573. #backup_manager=cinder.backup.manager.BackupManager
  574.  
  575. # Full class name for the Manager for scheduler (string value)
  576. #scheduler_manager=cinder.scheduler.manager.SchedulerManager
  577.  
  578. # Name of this node. This can be an opaque identifier. It is
  579. # not necessarily a host name, FQDN, or IP address. (string
  580. # value)
  581. #host=cinder
  582.  
  583. # Availability zone of this node (string value)
  584. #storage_availability_zone=nova
  585.  
  586. # Default availability zone for new volumes. If not set, the
  587. # storage_availability_zone option value is used as the
  588. # default for new volumes. (string value)
  589. #default_availability_zone=<None>
  590.  
  591. # Default volume type to use (string value)
  592. default_volume_type=lvmg
  593.  
  594. # Time period for which to generate volume usages. The options
  595. # are hour, day, month, or year. (string value)
  596. #volume_usage_audit_period=month
  597.  
  598. # Path to the rootwrap configuration file to use for running
  599. # commands as root (string value)
  600. #rootwrap_config=/etc/cinder/rootwrap.conf
  601.  
  602. # Enable monkey patching (boolean value)
  603. #monkey_patch=false
  604.  
  605. # List of modules/decorators to monkey patch (list value)
  606. #monkey_patch_modules=
  607.  
  608. # Maximum time since last check-in for a service to be
  609. # considered up (integer value)
  610. #service_down_time=60
  611.  
  612. # The full class name of the volume API class to use (string
  613. # value)
  614. #volume_api_class=cinder.volume.api.API
  615.  
  616. # The full class name of the volume backup API class (string
  617. # value)
  618. #backup_api_class=cinder.backup.api.API
  619.  
  620. # The strategy to use for auth. Supports noauth, keystone, and
  621. # deprecated. (string value)
  622. auth_strategy=keystone
  623.  
  624. # A list of backend names to use. These backend names should
  625. # be backed by a unique [CONFIG] group with its options (list
  626. # value)
  627. enabled_backends=lvmg
  628.  
  629. # Whether snapshots count against GigaByte quota (boolean
  630. # value)
  631. #no_snapshot_gb_quota=false
  632.  
  633. # The full class name of the volume transfer API class (string
  634. # value)
  635. #transfer_api_class=cinder.transfer.api.API
  636.  
  637. # The full class name of the volume replication API class
  638. # (string value)
  639. #replication_api_class=cinder.replication.api.API
  640.  
  641. # The full class name of the consistencygroup API class
  642. # (string value)
  643. #consistencygroup_api_class=cinder.consistencygroup.api.API
  644.  
  645.  
  646. #
  647. # Options defined in cinder.compute
  648. #
  649.  
  650. # The full class name of the compute API class to use (string
  651. # value)
  652. #compute_api_class=cinder.compute.nova.API
  653.  
  654.  
  655. #
  656. # Options defined in cinder.compute.nova
  657. #
  658.  
  659. # Match this value when searching for nova in the service
  660. # catalog. Format is: separated values of the form:
  661. # <service_type>:<service_name>:<endpoint_type> (string value)
  662. #nova_catalog_info=compute:nova:publicURL
  663.  
  664. # Same as nova_catalog_info, but for admin endpoint. (string
  665. # value)
  666. #nova_catalog_admin_info=compute:nova:adminURL
  667.  
  668. # Override service catalog lookup with template for nova
  669. # endpoint e.g. http://localhost:8774/v2/%(project_id)s
  670. # (string value)
  671. #nova_endpoint_template=<None>
  672.  
  673. # Same as nova_endpoint_template, but for admin endpoint.
  674. # (string value)
  675. #nova_endpoint_admin_template=<None>
  676.  
  677. # Region name of this node (string value)
  678. #os_region_name=<None>
  679.  
  680. # Location of ca certificates file to use for nova client
  681. # requests. (string value)
  682. #nova_ca_certificates_file=<None>
  683.  
  684. # Allow to perform insecure SSL requests to nova (boolean
  685. # value)
  686. #nova_api_insecure=false
  687.  
  688.  
  689. #
  690. # Options defined in cinder.db.api
  691. #
  692.  
  693. # The backend to use for db (string value)
  694. #db_backend=sqlalchemy
  695.  
  696. # Services to be added to the available pool on create
  697. # (boolean value)
  698. #enable_new_services=true
  699.  
  700. # Template string to be used to generate volume names (string
  701. # value)
  702. #volume_name_template=volume-%s
  703.  
  704. # Template string to be used to generate snapshot names
  705. # (string value)
  706. #snapshot_name_template=snapshot-%s
  707.  
  708. # Template string to be used to generate backup names (string
  709. # value)
  710. #backup_name_template=backup-%s
  711.  
  712.  
  713. #
  714. # Options defined in cinder.db.base
  715. #
  716.  
  717. # Driver to use for database access (string value)
  718. #db_driver=cinder.db
  719.  
  720.  
  721. #
  722. # Options defined in cinder.image.glance
  723. #
  724.  
  725. # Default core properties of image (list value)
  726. #glance_core_properties=checksum,container_format,disk_format,image_name,image_id,min_disk,min_ram,name,size
  727.  
  728. # A list of url schemes that can be downloaded directly via
  729. # the direct_url. Currently supported schemes: [file]. (list
  730. # value)
  731. #allowed_direct_url_schemes=
  732.  
  733.  
  734. #
  735. # Options defined in cinder.image.image_utils
  736. #
  737.  
  738. # Directory used for temporary storage during image conversion
  739. # (string value)
  740. image_conversion_dir=/shares/scratch/
  741.  
  742.  
  743. #
  744. # Options defined in cinder.openstack.common.eventlet_backdoor
  745. #
  746.  
  747. # Enable eventlet backdoor. Acceptable values are 0, <port>,
  748. # and <start>:<end>, where 0 results in listening on a random
  749. # tcp port number; <port> results in listening on the
  750. # specified port number (and not enabling backdoor if that
  751. # port is in use); and <start>:<end> results in listening on
  752. # the smallest unused port number within the specified range
  753. # of port numbers. The chosen port is displayed in the
  754. # service's log file. (string value)
  755. #backdoor_port=<None>
  756.  
  757.  
  758. #
  759. # Options defined in cinder.openstack.common.lockutils
  760. #
  761.  
  762. # Whether to disable inter-process locks (boolean value)
  763. #disable_process_locking=false
  764.  
  765. # Directory to use for lock files. Default to a temp directory
  766. # (string value)
  767. #lock_path=<None>
  768.  
  769.  
  770. #
  771. # Options defined in cinder.openstack.common.log
  772. #
  773.  
  774. # Print debugging output (set logging level to DEBUG instead
  775. # of default WARNING level). (boolean value)
  776. #debug=false
  777.  
  778. # Print more verbose output (set logging level to INFO instead
  779. # of default WARNING level). (boolean value)
  780. verbose=True
  781.  
  782. # Log output to standard error. (boolean value)
  783. #use_stderr=true
  784.  
  785. # Format string to use for log messages with context. (string
  786. # value)
  787. #logging_context_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  788.  
  789. # Format string to use for log messages without context.
  790. # (string value)
  791. #logging_default_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  792.  
  793. # Data to append to log format when level is DEBUG. (string
  794. # value)
  795. #logging_debug_format_suffix=%(funcName)s %(pathname)s:%(lineno)d
  796.  
  797. # Prefix each line of exception output with this format.
  798. # (string value)
  799. #logging_exception_prefix=%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
  800.  
  801. # List of logger=LEVEL pairs. (list value)
  802. #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,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN
  803.  
  804. # Enables or disables publication of error events. (boolean
  805. # value)
  806. #publish_errors=false
  807.  
  808. # Enables or disables fatal status of deprecations. (boolean
  809. # value)
  810. #fatal_deprecations=false
  811.  
  812. # The format for an instance that is passed with the log
  813. # message. (string value)
  814. #instance_format="[instance: %(uuid)s] "
  815.  
  816. # The format for an instance UUID that is passed with the log
  817. # message. (string value)
  818. #instance_uuid_format="[instance: %(uuid)s] "
  819.  
  820. # The name of a logging configuration file. This file is
  821. # appended to any existing logging configuration files. For
  822. # details about logging configuration files, see the Python
  823. # logging module documentation. (string value)
  824. # Deprecated group/name - [DEFAULT]/log_config
  825. #log_config_append=<None>
  826.  
  827. # DEPRECATED. A logging.Formatter log message format string
  828. # which may use any of the available logging.LogRecord
  829. # attributes. This option is deprecated. Please use
  830. # logging_context_format_string and
  831. # logging_default_format_string instead. (string value)
  832. #log_format=<None>
  833.  
  834. # Format string for %%(asctime)s in log records. Default:
  835. # %(default)s . (string value)
  836. #log_date_format=%Y-%m-%d %H:%M:%S
  837.  
  838. # (Optional) Name of log file to output to. If no default is
  839. # set, logging will go to stdout. (string value)
  840. # Deprecated group/name - [DEFAULT]/logfile
  841. #log_file=<None>
  842.  
  843. # (Optional) The base directory used for relative --log-file
  844. # paths. (string value)
  845. # Deprecated group/name - [DEFAULT]/logdir
  846. #log_dir=<None>
  847.  
  848. # Use syslog for logging. Existing syslog format is DEPRECATED
  849. # during I, and will change in J to honor RFC5424. (boolean
  850. # value)
  851. #use_syslog=false
  852.  
  853. # (Optional) Enables or disables syslog rfc5424 format for
  854. # logging. If enabled, prefixes the MSG part of the syslog
  855. # message with APP-NAME (RFC5424). The format without the APP-
  856. # NAME is deprecated in I, and will be removed in J. (boolean
  857. # value)
  858. #use_syslog_rfc_format=false
  859.  
  860. # Syslog facility to receive log lines. (string value)
  861. #syslog_log_facility=LOG_USER
  862.  
  863.  
  864. #
  865. # Options defined in cinder.openstack.common.periodic_task
  866. #
  867.  
  868. # Some periodic tasks can be run in a separate process. Should
  869. # we run them here? (boolean value)
  870. #run_external_periodic_tasks=true
  871.  
  872.  
  873. #
  874. # Options defined in cinder.openstack.common.policy
  875. #
  876.  
  877. # The JSON file that defines policies. (string value)
  878. #policy_file=policy.json
  879.  
  880. # Default rule. Enforced when a requested rule is not found.
  881. # (string value)
  882. #policy_default_rule=default
  883.  
  884.  
  885. #
  886. # Options defined in cinder.scheduler.driver
  887. #
  888.  
  889. # The scheduler host manager class to use (string value)
  890. #scheduler_host_manager=cinder.scheduler.host_manager.HostManager
  891.  
  892. # Maximum number of attempts to schedule an volume (integer
  893. # value)
  894. #scheduler_max_attempts=3
  895.  
  896.  
  897. #
  898. # Options defined in cinder.scheduler.host_manager
  899. #
  900.  
  901. # Which filter class names to use for filtering hosts when not
  902. # specified in the request. (list value)
  903. #scheduler_default_filters=AvailabilityZoneFilter,CapacityFilter,CapabilitiesFilter
  904.  
  905. # Which weigher class names to use for weighing hosts. (list
  906. # value)
  907. #scheduler_default_weighers=CapacityWeigher
  908.  
  909.  
  910. #
  911. # Options defined in cinder.scheduler.manager
  912. #
  913.  
  914. # Default scheduler driver to use (string value)
  915. #scheduler_driver=cinder.scheduler.filter_scheduler.FilterScheduler
  916.  
  917.  
  918. #
  919. # Options defined in cinder.scheduler.scheduler_options
  920. #
  921.  
  922. # Absolute path to scheduler configuration JSON file. (string
  923. # value)
  924. #scheduler_json_config_location=
  925.  
  926.  
  927. #
  928. # Options defined in cinder.scheduler.simple
  929. #
  930.  
  931. # This configure option has been deprecated along with the
  932. # SimpleScheduler. New scheduler is able to gather capacity
  933. # information for each host, thus setting the maximum number
  934. # of volume gigabytes for host is no longer needed. It's safe
  935. # to remove this configure from cinder.conf. (integer value)
  936. #max_gigabytes=10000
  937.  
  938.  
  939. #
  940. # Options defined in cinder.scheduler.weights.capacity
  941. #
  942.  
  943. # Multiplier used for weighing volume capacity. Negative
  944. # numbers mean to stack vs spread. (floating point value)
  945. #capacity_weight_multiplier=1.0
  946.  
  947. # Multiplier used for weighing volume capacity. Negative
  948. # numbers mean to stack vs spread. (floating point value)
  949. #allocated_capacity_weight_multiplier=-1.0
  950.  
  951.  
  952. #
  953. # Options defined in cinder.scheduler.weights.volume_number
  954. #
  955.  
  956. # Multiplier used for weighing volume number. Negative numbers
  957. # mean to spread vs stack. (floating point value)
  958. #volume_number_multiplier=-1.0
  959.  
  960.  
  961. #
  962. # Options defined in cinder.transfer.api
  963. #
  964.  
  965. # The number of characters in the salt. (integer value)
  966. #volume_transfer_salt_length=8
  967.  
  968. # The number of characters in the autogenerated auth key.
  969. # (integer value)
  970. #volume_transfer_key_length=16
  971.  
  972.  
  973. #
  974. # Options defined in cinder.volume.api
  975. #
  976.  
  977. # Cache volume availability zones in memory for the provided
  978. # duration in seconds (integer value)
  979. #az_cache_duration=3600
  980.  
  981. # Create volume from snapshot at the host where snapshot
  982. # resides (boolean value)
  983. #snapshot_same_host=true
  984.  
  985. # Ensure that the new volumes are the same AZ as snapshot or
  986. # source volume (boolean value)
  987. #cloned_volume_same_az=true
  988.  
  989.  
  990. #
  991. # Options defined in cinder.volume.driver
  992. #
  993.  
  994. # The maximum number of times to rescan iSER targetto find
  995. # volume (integer value)
  996. #num_iser_scan_tries=3
  997.  
  998. # The maximum number of iSER target IDs per host (integer
  999. # value)
  1000. #iser_num_targets=100
  1001.  
  1002. # Prefix for iSER volumes (string value)
  1003. #iser_target_prefix=iqn.2010-10.org.iser.openstack:
  1004.  
  1005. # The IP address that the iSER daemon is listening on (string
  1006. # value)
  1007. #iser_ip_address=$my_ip
  1008.  
  1009. # The port that the iSER daemon is listening on (integer
  1010. # value)
  1011. #iser_port=3260
  1012.  
  1013. # The name of the iSER target user-land tool to use (string
  1014. # value)
  1015. #iser_helper=tgtadm
  1016.  
  1017. # Number of times to attempt to run flakey shell commands
  1018. # (integer value)
  1019. #num_shell_tries=3
  1020.  
  1021. # The percentage of backend capacity is reserved (integer
  1022. # value)
  1023. #reserved_percentage=0
  1024.  
  1025. # The maximum number of iSCSI target IDs per host (integer
  1026. # value)
  1027. #iscsi_num_targets=100
  1028.  
  1029. # Prefix for iSCSI volumes (string value)
  1030. #iscsi_target_prefix=iqn.2010-10.org.openstack:
  1031.  
  1032. # The IP address that the iSCSI daemon is listening on (string
  1033. # value)
  1034. iscsi_ip_address=10.1.99.250
  1035.  
  1036. # The port that the iSCSI daemon is listening on (integer
  1037. # value)
  1038. #iscsi_port=3260
  1039.  
  1040. # The maximum number of times to rescan targets to find volume
  1041. # (integer value)
  1042. # Deprecated group/name - [DEFAULT]/num_iscsi_scan_tries
  1043. #num_volume_device_scan_tries=3
  1044.  
  1045. # The backend name for a given driver implementation (string
  1046. # value)
  1047. volume_backend_name=LVM_iSCSI
  1048.  
  1049. # Do we attach/detach volumes in cinder using multipath for
  1050. # volume to image and image to volume transfers? (boolean
  1051. # value)
  1052. #use_multipath_for_image_xfer=false
  1053.  
  1054. # Method used to wipe old volumes (valid options are: none,
  1055. # zero, shred) (string value)
  1056. #volume_clear=zero
  1057.  
  1058. # Size in MiB to wipe at start of old volumes. 0 => all
  1059. # (integer value)
  1060. #volume_clear_size=0
  1061.  
  1062. # The flag to pass to ionice to alter the i/o priority of the
  1063. # process used to zero a volume after deletion, for example
  1064. # "-c3" for idle only priority. (string value)
  1065. #volume_clear_ionice=<None>
  1066.  
  1067. # iSCSI target user-land tool to use. tgtadm is default, use
  1068. # lioadm for LIO iSCSI support, iseradm for the ISER protocol,
  1069. # or fake for testing. (string value)
  1070. iscsi_helper=lioadm
  1071.  
  1072. # Volume configuration file storage directory (string value)
  1073. #volumes_dir=$state_path/volumes
  1074.  
  1075. # IET configuration file (string value)
  1076. #iet_conf=/etc/iet/ietd.conf
  1077.  
  1078. # Comma-separated list of initiator IQNs allowed to connect to
  1079. # the iSCSI target. (From Nova compute nodes.) (string value)
  1080. #lio_initiator_iqns=
  1081.  
  1082. # Sets the behavior of the iSCSI target to either perform
  1083. # blockio or fileio optionally, auto can be set and Cinder
  1084. # will autodetect type of backing device (string value)
  1085. #iscsi_iotype=fileio
  1086.  
  1087. # The default block size used when copying/clearing volumes
  1088. # (string value)
  1089. #volume_dd_blocksize=1M
  1090.  
  1091. # The blkio cgroup name to be used to limit bandwidth of
  1092. # volume copy (string value)
  1093. #volume_copy_blkio_cgroup_name=cinder-volume-copy
  1094.  
  1095. # The upper limit of bandwidth of volume copy. 0 => unlimited
  1096. # (integer value)
  1097. #volume_copy_bps_limit=0
  1098.  
  1099. # Sets the behavior of the iSCSI target to either perform
  1100. # write-back(on) or write-through(off). This parameter is
  1101. # valid if iscsi_helper is set to tgtadm or iseradm. (string
  1102. # value)
  1103. #iscsi_write_cache=on
  1104.  
  1105. # The path to the client certificate key for verification, if
  1106. # the driver supports it. (string value)
  1107. #driver_client_cert_key=<None>
  1108.  
  1109. # The path to the client certificate for verification, if the
  1110. # driver supports it. (string value)
  1111. #driver_client_cert=<None>
  1112.  
  1113.  
  1114. #
  1115. # Options defined in cinder.volume.drivers.block_device
  1116. #
  1117.  
  1118. # List of all available devices (list value)
  1119. #available_devices=
  1120.  
  1121.  
  1122. #
  1123. # Options defined in cinder.volume.drivers.coraid
  1124. #
  1125.  
  1126. # IP address of Coraid ESM (string value)
  1127. #coraid_esm_address=
  1128.  
  1129. # User name to connect to Coraid ESM (string value)
  1130. #coraid_user=admin
  1131.  
  1132. # Name of group on Coraid ESM to which coraid_user belongs
  1133. # (must have admin privilege) (string value)
  1134. #coraid_group=admin
  1135.  
  1136. # Password to connect to Coraid ESM (string value)
  1137. #coraid_password=password
  1138.  
  1139. # Volume Type key name to store ESM Repository Name (string
  1140. # value)
  1141. #coraid_repository_key=coraid_repository
  1142.  
  1143.  
  1144. #
  1145. # Options defined in cinder.volume.drivers.datera
  1146. #
  1147.  
  1148. # Datera API token. (string value)
  1149. #datera_api_token=<None>
  1150.  
  1151. # Datera API port. (string value)
  1152. #datera_api_port=7717
  1153.  
  1154. # Datera API version. (string value)
  1155. #datera_api_version=1
  1156.  
  1157. # Number of replicas to create of an inode. (string value)
  1158. #datera_num_replicas=3
  1159.  
  1160.  
  1161. #
  1162. # Options defined in cinder.volume.drivers.emc.emc_vmax_common
  1163. #
  1164.  
  1165. # use this file for cinder emc plugin config data (string
  1166. # value)
  1167. #cinder_emc_config_file=/etc/cinder/cinder_emc_config.xml
  1168.  
  1169.  
  1170. #
  1171. # Options defined in cinder.volume.drivers.emc.emc_vnx_cli
  1172. #
  1173.  
  1174. # VNX authentication scope type. (string value)
  1175. #storage_vnx_authentication_type=global
  1176.  
  1177. # Directory path that contains the VNX security file. Make
  1178. # sure the security file is generated first. (string value)
  1179. #storage_vnx_security_file_dir=<None>
  1180.  
  1181. # Naviseccli Path. (string value)
  1182. #naviseccli_path=
  1183.  
  1184. # Storage pool name. (string value)
  1185. #storage_vnx_pool_name=<None>
  1186.  
  1187. # VNX secondary SP IP Address. (string value)
  1188. #san_secondary_ip=<None>
  1189.  
  1190. # Default timeout for CLI operations in minutes. For example,
  1191. # LUN migration is a typical long running operation, which
  1192. # depends on the LUN size and the load of the array. An upper
  1193. # bound in the specific deployment can be set to avoid
  1194. # unnecessary long wait. By default, it is 365 days long.
  1195. # (integer value)
  1196. #default_timeout=525600
  1197.  
  1198. # Default max number of LUNs in a storage group. By default,
  1199. # the value is 255. (integer value)
  1200. #max_luns_per_storage_group=255
  1201.  
  1202. # To destroy storage group when the last LUN is removed from
  1203. # it. By default, the value is False. (boolean value)
  1204. #destroy_empty_storage_group=false
  1205.  
  1206. # Mapping between hostname and its iSCSI initiator IP
  1207. # addresses. (string value)
  1208. #iscsi_initiators=
  1209.  
  1210. # Automatically register initiators. By default, the value is
  1211. # False. (boolean value)
  1212. #initiator_auto_registration=false
  1213.  
  1214.  
  1215. #
  1216. # Options defined in cinder.volume.drivers.eqlx
  1217. #
  1218.  
  1219. # Group name to use for creating volumes (string value)
  1220. #eqlx_group_name=group-0
  1221.  
  1222. # Timeout for the Group Manager cli command execution (integer
  1223. # value)
  1224. #eqlx_cli_timeout=30
  1225.  
  1226. # Maximum retry count for reconnection (integer value)
  1227. #eqlx_cli_max_retries=5
  1228.  
  1229. # Use CHAP authentication for targets? (boolean value)
  1230. #eqlx_use_chap=false
  1231.  
  1232. # Existing CHAP account name (string value)
  1233. #eqlx_chap_login=admin
  1234.  
  1235. # Password for specified CHAP account name (string value)
  1236. #eqlx_chap_password=password
  1237.  
  1238. # Pool in which volumes will be created (string value)
  1239. #eqlx_pool=default
  1240.  
  1241.  
  1242. #
  1243. # Options defined in cinder.volume.drivers.fujitsu_eternus_dx_common
  1244. #
  1245.  
  1246. # The configuration file for the Cinder SMI-S driver (string
  1247. # value)
  1248. #cinder_smis_config_file=/etc/cinder/cinder_fujitsu_eternus_dx.xml
  1249.  
  1250.  
  1251. #
  1252. # Options defined in cinder.volume.drivers.fusionio.ioControl
  1253. #
  1254.  
  1255. # amount of time wait for iSCSI target to come online (integer
  1256. # value)
  1257. #fusionio_iocontrol_targetdelay=5
  1258.  
  1259. # number of retries for GET operations (integer value)
  1260. #fusionio_iocontrol_retry=3
  1261.  
  1262. # verify the array certificate on each transaction (boolean
  1263. # value)
  1264. #fusionio_iocontrol_verify_cert=true
  1265.  
  1266.  
  1267. #
  1268. # Options defined in cinder.volume.drivers.glusterfs
  1269. #
  1270.  
  1271. # File with the list of available gluster shares (string
  1272. # value)
  1273. #glusterfs_shares_config=/etc/cinder/glusterfs_shares
  1274.  
  1275. # Create volumes as sparsed files which take no space.If set
  1276. # to False volume is created as regular file.In such case
  1277. # volume creation takes a lot of time. (boolean value)
  1278. #glusterfs_sparsed_volumes=true
  1279.  
  1280. # Create volumes as QCOW2 files rather than raw files.
  1281. # (boolean value)
  1282. #glusterfs_qcow2_volumes=false
  1283.  
  1284. # Base dir containing mount points for gluster shares. (string
  1285. # value)
  1286. #glusterfs_mount_point_base=$state_path/mnt
  1287.  
  1288.  
  1289. #
  1290. # Options defined in cinder.volume.drivers.hds.hds
  1291. #
  1292.  
  1293. # The configuration file for the Cinder HDS driver for HUS
  1294. # (string value)
  1295. #hds_cinder_config_file=/opt/hds/hus/cinder_hus_conf.xml
  1296.  
  1297.  
  1298. #
  1299. # Options defined in cinder.volume.drivers.hds.iscsi
  1300. #
  1301.  
  1302. # Configuration file for HDS iSCSI cinder plugin (string
  1303. # value)
  1304. #hds_hnas_iscsi_config_file=/opt/hds/hnas/cinder_iscsi_conf.xml
  1305.  
  1306.  
  1307. #
  1308. # Options defined in cinder.volume.drivers.hds.nfs
  1309. #
  1310.  
  1311. # Configuration file for HDS NFS cinder plugin (string value)
  1312. #hds_hnas_nfs_config_file=/opt/hds/hnas/cinder_nfs_conf.xml
  1313.  
  1314.  
  1315. #
  1316. # Options defined in cinder.volume.drivers.hitachi.hbsd_common
  1317. #
  1318.  
  1319. # Serial number of storage system (string value)
  1320. #hitachi_serial_number=<None>
  1321.  
  1322. # Name of an array unit (string value)
  1323. #hitachi_unit_name=<None>
  1324.  
  1325. # Pool ID of storage system (integer value)
  1326. #hitachi_pool_id=<None>
  1327.  
  1328. # Thin pool ID of storage system (integer value)
  1329. #hitachi_thin_pool_id=<None>
  1330.  
  1331. # Range of logical device of storage system (string value)
  1332. #hitachi_ldev_range=<None>
  1333.  
  1334. # Default copy method of storage system (string value)
  1335. #hitachi_default_copy_method=FULL
  1336.  
  1337. # Copy speed of storage system (integer value)
  1338. #hitachi_copy_speed=3
  1339.  
  1340. # Interval to check copy (integer value)
  1341. #hitachi_copy_check_interval=3
  1342.  
  1343. # Interval to check copy asynchronously (integer value)
  1344. #hitachi_async_copy_check_interval=10
  1345.  
  1346. # Control port names for HostGroup or iSCSI Target (string
  1347. # value)
  1348. #hitachi_target_ports=<None>
  1349.  
  1350. # Range of group number (string value)
  1351. #hitachi_group_range=<None>
  1352.  
  1353. # Request for creating HostGroup or iSCSI Target (boolean
  1354. # value)
  1355. #hitachi_group_request=false
  1356.  
  1357.  
  1358. #
  1359. # Options defined in cinder.volume.drivers.hitachi.hbsd_fc
  1360. #
  1361.  
  1362. # Request for FC Zone creating HostGroup (boolean value)
  1363. #hitachi_zoning_request=false
  1364.  
  1365.  
  1366. #
  1367. # Options defined in cinder.volume.drivers.hitachi.hbsd_horcm
  1368. #
  1369.  
  1370. # Instance numbers for HORCM (string value)
  1371. #hitachi_horcm_numbers=200,201
  1372.  
  1373. # Username of storage system for HORCM (string value)
  1374. #hitachi_horcm_user=<None>
  1375.  
  1376. # Password of storage system for HORCM (string value)
  1377. #hitachi_horcm_password=<None>
  1378.  
  1379. # Add to HORCM configuration (boolean value)
  1380. #hitachi_horcm_add_conf=true
  1381.  
  1382.  
  1383. #
  1384. # Options defined in cinder.volume.drivers.hitachi.hbsd_iscsi
  1385. #
  1386.  
  1387. # Add CHAP user (boolean value)
  1388. #hitachi_add_chap_user=false
  1389.  
  1390. # iSCSI authentication method (string value)
  1391. #hitachi_auth_method=<None>
  1392.  
  1393. # iSCSI authentication username (string value)
  1394. #hitachi_auth_user=HBSD-CHAP-user
  1395.  
  1396. # iSCSI authentication password (string value)
  1397. #hitachi_auth_password=HBSD-CHAP-password
  1398.  
  1399.  
  1400. #
  1401. # Options defined in cinder.volume.drivers.huawei
  1402. #
  1403.  
  1404. # The configuration file for the Cinder Huawei driver (string
  1405. # value)
  1406. #cinder_huawei_conf_file=/etc/cinder/cinder_huawei_conf.xml
  1407.  
  1408.  
  1409. #
  1410. # Options defined in cinder.volume.drivers.ibm.gpfs
  1411. #
  1412.  
  1413. # Specifies the path of the GPFS directory where Block Storage
  1414. # volume and snapshot files are stored. (string value)
  1415. #gpfs_mount_point_base=<None>
  1416.  
  1417. # Specifies the path of the Image service repository in GPFS.
  1418. # Leave undefined if not storing images in GPFS. (string
  1419. # value)
  1420. #gpfs_images_dir=<None>
  1421.  
  1422. # Specifies the type of image copy to be used. Set this when
  1423. # the Image service repository also uses GPFS so that image
  1424. # files can be transferred efficiently from the Image service
  1425. # to the Block Storage service. There are two valid values:
  1426. # "copy" specifies that a full copy of the image is made;
  1427. # "copy_on_write" specifies that copy-on-write optimization
  1428. # strategy is used and unmodified blocks of the image file are
  1429. # shared efficiently. (string value)
  1430. #gpfs_images_share_mode=<None>
  1431.  
  1432. # Specifies an upper limit on the number of indirections
  1433. # required to reach a specific block due to snapshots or
  1434. # clones. A lengthy chain of copy-on-write snapshots or
  1435. # clones can have a negative impact on performance, but
  1436. # improves space utilization. 0 indicates unlimited clone
  1437. # depth. (integer value)
  1438. #gpfs_max_clone_depth=0
  1439.  
  1440. # Specifies that volumes are created as sparse files which
  1441. # initially consume no space. If set to False, the volume is
  1442. # created as a fully allocated file, in which case, creation
  1443. # may take a significantly longer time. (boolean value)
  1444. #gpfs_sparse_volumes=true
  1445.  
  1446. # Specifies the storage pool that volumes are assigned to. By
  1447. # default, the system storage pool is used. (string value)
  1448. #gpfs_storage_pool=system
  1449.  
  1450.  
  1451. #
  1452. # Options defined in cinder.volume.drivers.ibm.ibmnas
  1453. #
  1454.  
  1455. # IP address or Hostname of NAS system. (string value)
  1456. #nas_ip=
  1457.  
  1458. # User name to connect to NAS system. (string value)
  1459. #nas_login=admin
  1460.  
  1461. # Password to connect to NAS system. (string value)
  1462. #nas_password=
  1463.  
  1464. # SSH port to use to connect to NAS system. (integer value)
  1465. #nas_ssh_port=22
  1466.  
  1467. # Filename of private key to use for SSH authentication.
  1468. # (string value)
  1469. #nas_private_key=
  1470.  
  1471. # IBMNAS platform type to be used as backend storage; valid
  1472. # values are - v7ku : for using IBM Storwize V7000 Unified,
  1473. # sonas : for using IBM Scale Out NAS, gpfs-nas : for using
  1474. # NFS based IBM GPFS deployments. (string value)
  1475. #ibmnas_platform_type=v7ku
  1476.  
  1477.  
  1478. #
  1479. # Options defined in cinder.volume.drivers.ibm.storwize_svc
  1480. #
  1481.  
  1482. # Storage system storage pool for volumes (string value)
  1483. #storwize_svc_volpool_name=volpool
  1484.  
  1485. # Storage system space-efficiency parameter for volumes
  1486. # (percentage) (integer value)
  1487. #storwize_svc_vol_rsize=2
  1488.  
  1489. # Storage system threshold for volume capacity warnings
  1490. # (percentage) (integer value)
  1491. #storwize_svc_vol_warning=0
  1492.  
  1493. # Storage system autoexpand parameter for volumes (True/False)
  1494. # (boolean value)
  1495. #storwize_svc_vol_autoexpand=true
  1496.  
  1497. # Storage system grain size parameter for volumes
  1498. # (32/64/128/256) (integer value)
  1499. #storwize_svc_vol_grainsize=256
  1500.  
  1501. # Storage system compression option for volumes (boolean
  1502. # value)
  1503. #storwize_svc_vol_compression=false
  1504.  
  1505. # Enable Easy Tier for volumes (boolean value)
  1506. #storwize_svc_vol_easytier=true
  1507.  
  1508. # The I/O group in which to allocate volumes (integer value)
  1509. #storwize_svc_vol_iogrp=0
  1510.  
  1511. # Maximum number of seconds to wait for FlashCopy to be
  1512. # prepared. Maximum value is 600 seconds (10 minutes) (integer
  1513. # value)
  1514. #storwize_svc_flashcopy_timeout=120
  1515.  
  1516. # Connection protocol (iSCSI/FC) (string value)
  1517. #storwize_svc_connection_protocol=iSCSI
  1518.  
  1519. # Configure CHAP authentication for iSCSI connections
  1520. # (Default: Enabled) (boolean value)
  1521. #storwize_svc_iscsi_chap_enabled=true
  1522.  
  1523. # Connect with multipath (FC only; iSCSI multipath is
  1524. # controlled by Nova) (boolean value)
  1525. #storwize_svc_multipath_enabled=false
  1526.  
  1527. # Allows vdisk to multi host mapping (boolean value)
  1528. #storwize_svc_multihostmap_enabled=true
  1529.  
  1530. # Indicate whether svc driver is compatible for NPIV setup. If
  1531. # it is compatible, it will allow no wwpns being returned on
  1532. # get_conn_fc_wwpns during initialize_connection (boolean
  1533. # value)
  1534. #storwize_svc_npiv_compatibility_mode=false
  1535.  
  1536. # Allow tenants to specify QOS on create (boolean value)
  1537. #storwize_svc_allow_tenant_qos=false
  1538.  
  1539. # If operating in stretched cluster mode, specify the name of
  1540. # the pool in which mirrored copies are stored.Example:
  1541. # "pool2" (string value)
  1542. #storwize_svc_stretched_cluster_partner=<None>
  1543.  
  1544.  
  1545. #
  1546. # Options defined in cinder.volume.drivers.ibm.xiv_ds8k
  1547. #
  1548.  
  1549. # Proxy driver that connects to the IBM Storage Array (string
  1550. # value)
  1551. #xiv_ds8k_proxy=xiv_ds8k_openstack.nova_proxy.XIVDS8KNovaProxy
  1552.  
  1553. # Connection type to the IBM Storage Array
  1554. # (fibre_channel|iscsi) (string value)
  1555. #xiv_ds8k_connection_type=iscsi
  1556.  
  1557. # CHAP authentication mode, effective only for iscsi
  1558. # (disabled|enabled) (string value)
  1559. #xiv_chap=disabled
  1560.  
  1561.  
  1562. #
  1563. # Options defined in cinder.volume.drivers.lvm
  1564. #
  1565.  
  1566. # Name for the VG that will contain exported volumes (string
  1567. # value)
  1568. volume_group=cinder-volumes
  1569.  
  1570. # If >0, create LVs with multiple mirrors. Note that this
  1571. # requires lvm_mirrors + 2 PVs with available space (integer
  1572. # value)
  1573. #lvm_mirrors=0
  1574.  
  1575. # Type of LVM volumes to deploy; (default or thin) (string
  1576. # value)
  1577. #lvm_type=default
  1578.  
  1579.  
  1580. #
  1581. # Options defined in cinder.volume.drivers.netapp.options
  1582. #
  1583.  
  1584. # The vFiler unit on which provisioning of block storage
  1585. # volumes will be done. This option is only used by the driver
  1586. # when connecting to an instance with a storage family of Data
  1587. # ONTAP operating in 7-Mode and the storage protocol selected
  1588. # is iSCSI. Only use this option when utilizing the MultiStore
  1589. # feature on the NetApp storage system. (string value)
  1590. #netapp_vfiler=<None>
  1591.  
  1592. # Administrative user account name used to access the storage
  1593. # system or proxy server. (string value)
  1594. #netapp_login=<None>
  1595.  
  1596. # Password for the administrative user account specified in
  1597. # the netapp_login option. (string value)
  1598. #netapp_password=<None>
  1599.  
  1600. # This option specifies the virtual storage server (Vserver)
  1601. # name on the storage cluster on which provisioning of block
  1602. # storage volumes should occur. If using the NFS storage
  1603. # protocol, this parameter is mandatory for storage service
  1604. # catalog support (utilized by Cinder volume type extra_specs
  1605. # support). If this option is specified, the exports belonging
  1606. # to the Vserver will only be used for provisioning in the
  1607. # future. Block storage volumes on exports not belonging to
  1608. # the Vserver specified by this option will continue to
  1609. # function normally. (string value)
  1610. #netapp_vserver=<None>
  1611.  
  1612. # The hostname (or IP address) for the storage system or proxy
  1613. # server. (string value)
  1614. #netapp_server_hostname=<None>
  1615.  
  1616. # The TCP port to use for communication with the storage
  1617. # system or proxy server. Traditionally, port 80 is used for
  1618. # HTTP and port 443 is used for HTTPS; however, this value
  1619. # should be changed if an alternate port has been configured
  1620. # on the storage system or proxy server. (integer value)
  1621. #netapp_server_port=80
  1622.  
  1623. # This option is used to specify the path to the E-Series
  1624. # proxy application on a proxy server. The value is combined
  1625. # with the value of the netapp_transport_type,
  1626. # netapp_server_hostname, and netapp_server_port options to
  1627. # create the URL used by the driver to connect to the proxy
  1628. # application. (string value)
  1629. #netapp_webservice_path=/devmgr/v2
  1630.  
  1631. # This option is only utilized when the storage family is
  1632. # configured to eseries. This option is used to restrict
  1633. # provisioning to the specified controllers. Specify the value
  1634. # of this option to be a comma separated list of controller
  1635. # hostnames or IP addresses to be used for provisioning.
  1636. # (string value)
  1637. #netapp_controller_ips=<None>
  1638.  
  1639. # Password for the NetApp E-Series storage array. (string
  1640. # value)
  1641. #netapp_sa_password=<None>
  1642.  
  1643. # This option is used to restrict provisioning to the
  1644. # specified storage pools. Only dynamic disk pools are
  1645. # currently supported. Specify the value of this option to be
  1646. # a comma separated list of disk pool names to be used for
  1647. # provisioning. (string value)
  1648. #netapp_storage_pools=<None>
  1649.  
  1650. # This option is used to define how the controllers in the
  1651. # E-Series storage array will work with the particular
  1652. # operating system on the hosts that are connected to it.
  1653. # (string value)
  1654. #netapp_eseries_host_type=linux_dm_mp
  1655.  
  1656. # If the percentage of available space for an NFS share has
  1657. # dropped below the value specified by this option, the NFS
  1658. # image cache will be cleaned. (integer value)
  1659. #thres_avl_size_perc_start=20
  1660.  
  1661. # When the percentage of available space on an NFS share has
  1662. # reached the percentage specified by this option, the driver
  1663. # will stop clearing files from the NFS image cache that have
  1664. # not been accessed in the last M minutes, where M is the
  1665. # value of the expiry_thres_minutes configuration option.
  1666. # (integer value)
  1667. #thres_avl_size_perc_stop=60
  1668.  
  1669. # This option specifies the threshold for last access time for
  1670. # images in the NFS image cache. When a cache cleaning cycle
  1671. # begins, images in the cache that have not been accessed in
  1672. # the last M minutes, where M is the value of this parameter,
  1673. # will be deleted from the cache to create free space on the
  1674. # NFS share. (integer value)
  1675. #expiry_thres_minutes=720
  1676.  
  1677. # This option specifies the path of the NetApp copy offload
  1678. # tool binary. Ensure that the binary has execute permissions
  1679. # set which allow the effective user of the cinder-volume
  1680. # process to execute the file. (string value)
  1681. #netapp_copyoffload_tool_path=<None>
  1682.  
  1683. # The quantity to be multiplied by the requested volume size
  1684. # to ensure enough space is available on the virtual storage
  1685. # server (Vserver) to fulfill the volume creation request.
  1686. # (floating point value)
  1687. #netapp_size_multiplier=1.2
  1688.  
  1689. # This option is only utilized when the storage protocol is
  1690. # configured to use iSCSI. This option is used to restrict
  1691. # provisioning to the specified controller volumes. Specify
  1692. # the value of this option to be a comma separated list of
  1693. # NetApp controller volume names to be used for provisioning.
  1694. # (string value)
  1695. #netapp_volume_list=<None>
  1696.  
  1697. # The storage family type used on the storage system; valid
  1698. # values are ontap_7mode for using Data ONTAP operating in
  1699. # 7-Mode, ontap_cluster for using clustered Data ONTAP, or
  1700. # eseries for using E-Series. (string value)
  1701. #netapp_storage_family=ontap_cluster
  1702.  
  1703. # The storage protocol to be used on the data path with the
  1704. # storage system; valid values are iscsi or nfs. (string
  1705. # value)
  1706. #netapp_storage_protocol=<None>
  1707.  
  1708. # The transport protocol used when communicating with the
  1709. # storage system or proxy server. Valid values are http or
  1710. # https. (string value)
  1711. #netapp_transport_type=http
  1712.  
  1713.  
  1714. #
  1715. # Options defined in cinder.volume.drivers.nexenta.options
  1716. #
  1717.  
  1718. # IP address of Nexenta SA (string value)
  1719. #nexenta_host=
  1720.  
  1721. # HTTP port to connect to Nexenta REST API server (integer
  1722. # value)
  1723. #nexenta_rest_port=2000
  1724.  
  1725. # Use http or https for REST connection (default auto) (string
  1726. # value)
  1727. #nexenta_rest_protocol=auto
  1728.  
  1729. # User name to connect to Nexenta SA (string value)
  1730. #nexenta_user=admin
  1731.  
  1732. # Password to connect to Nexenta SA (string value)
  1733. #nexenta_password=nexenta
  1734.  
  1735. # Nexenta target portal port (integer value)
  1736. #nexenta_iscsi_target_portal_port=3260
  1737.  
  1738. # SA Pool that holds all volumes (string value)
  1739. #nexenta_volume=cinder
  1740.  
  1741. # IQN prefix for iSCSI targets (string value)
  1742. #nexenta_target_prefix=iqn.1986-03.com.sun:02:cinder-
  1743.  
  1744. # Prefix for iSCSI target groups on SA (string value)
  1745. #nexenta_target_group_prefix=cinder/
  1746.  
  1747. # File with the list of available nfs shares (string value)
  1748. #nexenta_shares_config=/etc/cinder/nfs_shares
  1749.  
  1750. # Base directory that contains NFS share mount points (string
  1751. # value)
  1752. #nexenta_mount_point_base=$state_path/mnt
  1753.  
  1754. # Enables or disables the creation of volumes as sparsed files
  1755. # that take no space. If disabled (False), volume is created
  1756. # as a regular file, which takes a long time. (boolean value)
  1757. #nexenta_sparsed_volumes=true
  1758.  
  1759. # Default compression value for new ZFS folders. (string
  1760. # value)
  1761. #nexenta_volume_compression=on
  1762.  
  1763. # If set True cache NexentaStor appliance volroot option
  1764. # value. (boolean value)
  1765. #nexenta_nms_cache_volroot=true
  1766.  
  1767. # Enable stream compression, level 1..9. 1 - gives best speed;
  1768. # 9 - gives best compression. (integer value)
  1769. #nexenta_rrmgr_compression=0
  1770.  
  1771. # TCP Buffer size in KiloBytes. (integer value)
  1772. #nexenta_rrmgr_tcp_buf_size=4096
  1773.  
  1774. # Number of TCP connections. (integer value)
  1775. #nexenta_rrmgr_connections=2
  1776.  
  1777. # Block size for volumes (default=blank means 8KB) (string
  1778. # value)
  1779. #nexenta_blocksize=
  1780.  
  1781. # Enables or disables the creation of sparse volumes (boolean
  1782. # value)
  1783. #nexenta_sparse=false
  1784.  
  1785.  
  1786. #
  1787. # Options defined in cinder.volume.drivers.nfs
  1788. #
  1789.  
  1790. # File with the list of available nfs shares (string value)
  1791. #nfs_shares_config=/etc/cinder/nfs_shares
  1792.  
  1793. # Create volumes as sparsed files which take no space.If set
  1794. # to False volume is created as regular file.In such case
  1795. # volume creation takes a lot of time. (boolean value)
  1796. #nfs_sparsed_volumes=true
  1797.  
  1798. # Percent of ACTUAL usage of the underlying volume before no
  1799. # new volumes can be allocated to the volume destination.
  1800. # (floating point value)
  1801. #nfs_used_ratio=0.95
  1802.  
  1803. # This will compare the allocated to available space on the
  1804. # volume destination. If the ratio exceeds this number, the
  1805. # destination will no longer be valid. (floating point value)
  1806. #nfs_oversub_ratio=1.0
  1807.  
  1808. # Base dir containing mount points for nfs shares. (string
  1809. # value)
  1810. #nfs_mount_point_base=$state_path/mnt
  1811.  
  1812. # Mount options passed to the nfs client. See section of the
  1813. # nfs man page for details. (string value)
  1814. #nfs_mount_options=<None>
  1815.  
  1816.  
  1817. #
  1818. # Options defined in cinder.volume.drivers.nimble
  1819. #
  1820.  
  1821. # Nimble Controller pool name (string value)
  1822. #nimble_pool_name=default
  1823.  
  1824. # Nimble Subnet Label (string value)
  1825. #nimble_subnet_label=*
  1826.  
  1827.  
  1828. #
  1829. # Options defined in cinder.volume.drivers.prophetstor.options
  1830. #
  1831.  
  1832. # DPL pool uuid in which DPL volumes are stored. (string
  1833. # value)
  1834. #dpl_pool=
  1835.  
  1836. # DPL port number. (integer value)
  1837. #dpl_port=8357
  1838.  
  1839.  
  1840. #
  1841. # Options defined in cinder.volume.drivers.pure
  1842. #
  1843.  
  1844. # REST API authorization token. (string value)
  1845. #pure_api_token=<None>
  1846.  
  1847.  
  1848. #
  1849. # Options defined in cinder.volume.drivers.rbd
  1850. #
  1851.  
  1852. # The RADOS pool where rbd volumes are stored (string value)
  1853. #rbd_pool=rbd
  1854.  
  1855. # The RADOS client name for accessing rbd volumes - only set
  1856. # when using cephx authentication (string value)
  1857. #rbd_user=<None>
  1858.  
  1859. # Path to the ceph configuration file (string value)
  1860. #rbd_ceph_conf=
  1861.  
  1862. # Flatten volumes created from snapshots to remove dependency
  1863. # from volume to snapshot (boolean value)
  1864. #rbd_flatten_volume_from_snapshot=false
  1865.  
  1866. # The libvirt uuid of the secret for the rbd_user volumes
  1867. # (string value)
  1868. #rbd_secret_uuid=<None>
  1869.  
  1870. # Directory where temporary image files are stored when the
  1871. # volume driver does not write them directly to the volume.
  1872. # (string value)
  1873. #volume_tmp_dir=<None>
  1874.  
  1875. # Maximum number of nested volume clones that are taken before
  1876. # a flatten occurs. Set to 0 to disable cloning. (integer
  1877. # value)
  1878. #rbd_max_clone_depth=5
  1879.  
  1880. # Volumes will be chunked into objects of this size (in
  1881. # megabytes). (integer value)
  1882. #rbd_store_chunk_size=4
  1883.  
  1884. # Timeout value (in seconds) used when connecting to ceph
  1885. # cluster. If value < 0, no timeout is set and default
  1886. # librados value is used. (integer value)
  1887. #rados_connect_timeout=-1
  1888.  
  1889.  
  1890. #
  1891. # Options defined in cinder.volume.drivers.remotefs
  1892. #
  1893.  
  1894. # IP address or Hostname of NAS system. (string value)
  1895. #nas_ip=
  1896.  
  1897. # User name to connect to NAS system. (string value)
  1898. #nas_login=admin
  1899.  
  1900. # Password to connect to NAS system. (string value)
  1901. #nas_password=
  1902.  
  1903. # SSH port to use to connect to NAS system. (integer value)
  1904. #nas_ssh_port=22
  1905.  
  1906. # Filename of private key to use for SSH authentication.
  1907. # (string value)
  1908. #nas_private_key=
  1909.  
  1910.  
  1911. #
  1912. # Options defined in cinder.volume.drivers.san.hp.hp_3par_common
  1913. #
  1914.  
  1915. # 3PAR WSAPI Server Url like https://<3par ip>:8080/api/v1
  1916. # (string value)
  1917. #hp3par_api_url=
  1918.  
  1919. # 3PAR Super user username (string value)
  1920. #hp3par_username=
  1921.  
  1922. # 3PAR Super user password (string value)
  1923. #hp3par_password=
  1924.  
  1925. # The CPG to use for volume creation (string value)
  1926. #hp3par_cpg=OpenStack
  1927.  
  1928. # The CPG to use for Snapshots for volumes. If empty
  1929. # hp3par_cpg will be used (string value)
  1930. #hp3par_cpg_snap=
  1931.  
  1932. # The time in hours to retain a snapshot. You can't delete it
  1933. # before this expires. (string value)
  1934. #hp3par_snapshot_retention=
  1935.  
  1936. # The time in hours when a snapshot expires and is deleted.
  1937. # This must be larger than expiration (string value)
  1938. #hp3par_snapshot_expiration=
  1939.  
  1940. # Enable HTTP debugging to 3PAR (boolean value)
  1941. #hp3par_debug=false
  1942.  
  1943. # List of target iSCSI addresses to use. (list value)
  1944. #hp3par_iscsi_ips=
  1945.  
  1946. # Enable CHAP authentication for iSCSI connections. (boolean
  1947. # value)
  1948. #hp3par_iscsi_chap_enabled=false
  1949.  
  1950.  
  1951. #
  1952. # Options defined in cinder.volume.drivers.san.hp.hp_lefthand_rest_proxy
  1953. #
  1954.  
  1955. # HP LeftHand WSAPI Server Url like https://<LeftHand
  1956. # ip>:8081/lhos (string value)
  1957. #hplefthand_api_url=<None>
  1958.  
  1959. # HP LeftHand Super user username (string value)
  1960. #hplefthand_username=<None>
  1961.  
  1962. # HP LeftHand Super user password (string value)
  1963. #hplefthand_password=<None>
  1964.  
  1965. # HP LeftHand cluster name (string value)
  1966. #hplefthand_clustername=<None>
  1967.  
  1968. # Configure CHAP authentication for iSCSI connections
  1969. # (Default: Disabled) (boolean value)
  1970. #hplefthand_iscsi_chap_enabled=false
  1971.  
  1972. # Enable HTTP debugging to LeftHand (boolean value)
  1973. #hplefthand_debug=false
  1974.  
  1975.  
  1976. #
  1977. # Options defined in cinder.volume.drivers.san.hp.hp_msa_common
  1978. #
  1979.  
  1980. # The VDisk to use for volume creation. (string value)
  1981. #msa_vdisk=OpenStack
  1982.  
  1983.  
  1984. #
  1985. # Options defined in cinder.volume.drivers.san.san
  1986. #
  1987.  
  1988. # Use thin provisioning for SAN volumes? (boolean value)
  1989. #san_thin_provision=true
  1990.  
  1991. # IP address of SAN controller (string value)
  1992. #san_ip=
  1993.  
  1994. # Username for SAN controller (string value)
  1995. #san_login=admin
  1996.  
  1997. # Password for SAN controller (string value)
  1998. #san_password=
  1999.  
  2000. # Filename of private key to use for SSH authentication
  2001. # (string value)
  2002. #san_private_key=
  2003.  
  2004. # Cluster name to use for creating volumes (string value)
  2005. #san_clustername=
  2006.  
  2007. # SSH port to use with SAN (integer value)
  2008. #san_ssh_port=22
  2009.  
  2010. # Execute commands locally instead of over SSH; use if the
  2011. # volume service is running on the SAN device (boolean value)
  2012. #san_is_local=false
  2013.  
  2014. # SSH connection timeout in seconds (integer value)
  2015. #ssh_conn_timeout=30
  2016.  
  2017. # Minimum ssh connections in the pool (integer value)
  2018. #ssh_min_pool_conn=1
  2019.  
  2020. # Maximum ssh connections in the pool (integer value)
  2021. #ssh_max_pool_conn=5
  2022.  
  2023.  
  2024. #
  2025. # Options defined in cinder.volume.drivers.san.solaris
  2026. #
  2027.  
  2028. # The ZFS path under which to create zvols for volumes.
  2029. # (string value)
  2030. #san_zfs_volume_base=rpool/
  2031.  
  2032.  
  2033. #
  2034. # Options defined in cinder.volume.drivers.scality
  2035. #
  2036.  
  2037. # Path or URL to Scality SOFS configuration file (string
  2038. # value)
  2039. #scality_sofs_config=<None>
  2040.  
  2041. # Base dir where Scality SOFS shall be mounted (string value)
  2042. #scality_sofs_mount_point=$state_path/scality
  2043.  
  2044. # Path from Scality SOFS root to volume dir (string value)
  2045. #scality_sofs_volume_dir=cinder/volumes
  2046.  
  2047.  
  2048. #
  2049. # Options defined in cinder.volume.drivers.smbfs
  2050. #
  2051.  
  2052. # File with the list of available smbfs shares. (string value)
  2053. #smbfs_shares_config=/etc/cinder/smbfs_shares
  2054.  
  2055. # Default format that will be used when creating volumes if no
  2056. # volume format is specified. Can be set to: raw, qcow2, vhd
  2057. # or vhdx. (string value)
  2058. #smbfs_default_volume_format=qcow2
  2059.  
  2060. # Create volumes as sparsed files which take no space rather
  2061. # than regular files when using raw format, in which case
  2062. # volume creation takes lot of time. (boolean value)
  2063. #smbfs_sparsed_volumes=true
  2064.  
  2065. # Percent of ACTUAL usage of the underlying volume before no
  2066. # new volumes can be allocated to the volume destination.
  2067. # (floating point value)
  2068. #smbfs_used_ratio=0.95
  2069.  
  2070. # This will compare the allocated to available space on the
  2071. # volume destination. If the ratio exceeds this number, the
  2072. # destination will no longer be valid. (floating point value)
  2073. #smbfs_oversub_ratio=1.0
  2074.  
  2075. # Base dir containing mount points for smbfs shares. (string
  2076. # value)
  2077. #smbfs_mount_point_base=$state_path/mnt
  2078.  
  2079. # Mount options passed to the smbfs client. See mount.cifs man
  2080. # page for details. (string value)
  2081. #smbfs_mount_options=noperm,file_mode=0775,dir_mode=0775
  2082.  
  2083.  
  2084. #
  2085. # Options defined in cinder.volume.drivers.solidfire
  2086. #
  2087.  
  2088. # Set 512 byte emulation on volume creation; (boolean value)
  2089. #sf_emulate_512=true
  2090.  
  2091. # Allow tenants to specify QOS on create (boolean value)
  2092. #sf_allow_tenant_qos=false
  2093.  
  2094. # Create SolidFire accounts with this prefix. Any string can
  2095. # be used here, but the string "hostname" is special and will
  2096. # create a prefix using the cinder node hostsname (previous
  2097. # default behavior). The default is NO prefix. (string value)
  2098. #sf_account_prefix=<None>
  2099.  
  2100. # SolidFire API port. Useful if the device api is behind a
  2101. # proxy on a different port. (integer value)
  2102. #sf_api_port=443
  2103.  
  2104.  
  2105. #
  2106. # Options defined in cinder.volume.drivers.vmware.vmdk
  2107. #
  2108.  
  2109. # IP address for connecting to VMware ESX/VC server. (string
  2110. # value)
  2111. #vmware_host_ip=<None>
  2112.  
  2113. # Username for authenticating with VMware ESX/VC server.
  2114. # (string value)
  2115. #vmware_host_username=<None>
  2116.  
  2117. # Password for authenticating with VMware ESX/VC server.
  2118. # (string value)
  2119. #vmware_host_password=<None>
  2120.  
  2121. # Optional VIM service WSDL Location e.g
  2122. # http://<server>/vimService.wsdl. Optional over-ride to
  2123. # default location for bug work-arounds. (string value)
  2124. #vmware_wsdl_location=<None>
  2125.  
  2126. # Number of times VMware ESX/VC server API must be retried
  2127. # upon connection related issues. (integer value)
  2128. #vmware_api_retry_count=10
  2129.  
  2130. # The interval (in seconds) for polling remote tasks invoked
  2131. # on VMware ESX/VC server. (floating point value)
  2132. #vmware_task_poll_interval=0.5
  2133.  
  2134. # Name for the folder in the VC datacenter that will contain
  2135. # cinder volumes. (string value)
  2136. #vmware_volume_folder=cinder-volumes
  2137.  
  2138. # Timeout in seconds for VMDK volume transfer between Cinder
  2139. # and Glance. (integer value)
  2140. #vmware_image_transfer_timeout_secs=7200
  2141.  
  2142. # Max number of objects to be retrieved per batch. Query
  2143. # results will be obtained in batches from the server and not
  2144. # in one shot. Server may still limit the count to something
  2145. # less than the configured value. (integer value)
  2146. #vmware_max_objects_retrieval=100
  2147.  
  2148. # Optional string specifying the VMware VC server version. The
  2149. # driver attempts to retrieve the version from VMware VC
  2150. # server. Set this configuration only if you want to override
  2151. # the VC server version. (string value)
  2152. #vmware_host_version=<None>
  2153.  
  2154. # Directory where virtual disks are stored during volume
  2155. # backup and restore. (string value)
  2156. #vmware_tmp_dir=/tmp
  2157.  
  2158.  
  2159. #
  2160. # Options defined in cinder.volume.drivers.windows.windows
  2161. #
  2162.  
  2163. # Path to store VHD backed volumes (string value)
  2164. #windows_iscsi_lun_path=C:\iSCSIVirtualDisks
  2165.  
  2166.  
  2167. #
  2168. # Options defined in cinder.volume.drivers.zadara
  2169. #
  2170.  
  2171. # Management IP of Zadara VPSA (string value)
  2172. #zadara_vpsa_ip=<None>
  2173.  
  2174. # Zadara VPSA port number (string value)
  2175. #zadara_vpsa_port=<None>
  2176.  
  2177. # Use SSL connection (boolean value)
  2178. #zadara_vpsa_use_ssl=false
  2179.  
  2180. # User name for the VPSA (string value)
  2181. #zadara_user=<None>
  2182.  
  2183. # Password for the VPSA (string value)
  2184. #zadara_password=<None>
  2185.  
  2186. # Name of VPSA storage pool for volumes (string value)
  2187. #zadara_vpsa_poolname=<None>
  2188.  
  2189. # Default thin provisioning policy for volumes (boolean value)
  2190. #zadara_vol_thin=true
  2191.  
  2192. # Default encryption policy for volumes (boolean value)
  2193. #zadara_vol_encrypt=false
  2194.  
  2195. # Default template for VPSA volume names (string value)
  2196. #zadara_vol_name_template=OS_%s
  2197.  
  2198. # Automatically detach from servers on volume delete (boolean
  2199. # value)
  2200. #zadara_vpsa_auto_detach_on_delete=true
  2201.  
  2202. # Don't halt on deletion of non-existing volumes (boolean
  2203. # value)
  2204. #zadara_vpsa_allow_nonexistent_delete=true
  2205.  
  2206.  
  2207. #
  2208. # Options defined in cinder.volume.drivers.zfssa.zfssaiscsi
  2209. #
  2210.  
  2211. # Storage pool name. (string value)
  2212. #zfssa_pool=<None>
  2213.  
  2214. # Project name. (string value)
  2215. #zfssa_project=<None>
  2216.  
  2217. # Block size: 512, 1k, 2k, 4k, 8k, 16k, 32k, 64k, 128k.
  2218. # (string value)
  2219. #zfssa_lun_volblocksize=8k
  2220.  
  2221. # Flag to enable sparse (thin-provisioned): True, False.
  2222. # (boolean value)
  2223. #zfssa_lun_sparse=false
  2224.  
  2225. # Data compression-off, lzjb, gzip-2, gzip, gzip-9. (string
  2226. # value)
  2227. #zfssa_lun_compression=
  2228.  
  2229. # Synchronous write bias-latency, throughput. (string value)
  2230. #zfssa_lun_logbias=
  2231.  
  2232. # iSCSI initiator group. (string value)
  2233. #zfssa_initiator_group=
  2234.  
  2235. # iSCSI initiator IQNs. (comma separated) (string value)
  2236. #zfssa_initiator=
  2237.  
  2238. # iSCSI initiator CHAP user. (string value)
  2239. #zfssa_initiator_user=
  2240.  
  2241. # iSCSI initiator CHAP password. (string value)
  2242. #zfssa_initiator_password=
  2243.  
  2244. # iSCSI target group name. (string value)
  2245. #zfssa_target_group=tgt-grp
  2246.  
  2247. # iSCSI target CHAP user. (string value)
  2248. #zfssa_target_user=
  2249.  
  2250. # iSCSI target CHAP password. (string value)
  2251. #zfssa_target_password=
  2252.  
  2253. # iSCSI target portal (Data-IP:Port, w.x.y.z:3260). (string
  2254. # value)
  2255. #zfssa_target_portal=<None>
  2256.  
  2257. # Network interfaces of iSCSI targets. (comma separated)
  2258. # (string value)
  2259. #zfssa_target_interfaces=<None>
  2260.  
  2261. # REST connection timeout. (seconds) (integer value)
  2262. #zfssa_rest_timeout=<None>
  2263.  
  2264.  
  2265. #
  2266. # Options defined in cinder.volume.manager
  2267. #
  2268.  
  2269. # Driver to use for volume creation (string value)
  2270. volume_driver=cinder.volume.drivers.lvm.LVMISCSIDriver
  2271.  
  2272. # Timeout for creating the volume to migrate to when
  2273. # performing volume migration (seconds) (integer value)
  2274. #migration_create_volume_timeout_secs=300
  2275.  
  2276. # Offload pending volume delete during volume service startup
  2277. # (boolean value)
  2278. #volume_service_inithost_offload=false
  2279.  
  2280. # FC Zoning mode configured (string value)
  2281. #zoning_mode=none
  2282.  
  2283. # User defined capabilities, a JSON formatted string
  2284. # specifying key/value pairs. (string value)
  2285. #extra_capabilities={}
  2286.  
  2287.  
  2288. [BRCD_FABRIC_EXAMPLE]
  2289.  
  2290. #
  2291. # Options defined in cinder.zonemanager.drivers.brocade.brcd_fabric_opts
  2292. #
  2293.  
  2294. # Management IP of fabric (string value)
  2295. #fc_fabric_address=
  2296.  
  2297. # Fabric user ID (string value)
  2298. #fc_fabric_user=
  2299.  
  2300. # Password for user (string value)
  2301. #fc_fabric_password=
  2302.  
  2303. # Connecting port (integer value)
  2304. #fc_fabric_port=22
  2305.  
  2306. # overridden zoning policy (string value)
  2307. #zoning_policy=initiator-target
  2308.  
  2309. # overridden zoning activation state (boolean value)
  2310. #zone_activate=true
  2311.  
  2312. # overridden zone name prefix (string value)
  2313. #zone_name_prefix=<None>
  2314.  
  2315. # Principal switch WWN of the fabric (string value)
  2316. #principal_switch_wwn=<None>
  2317.  
  2318.  
  2319. [CISCO_FABRIC_EXAMPLE]
  2320.  
  2321. #
  2322. # Options defined in cinder.zonemanager.drivers.cisco.cisco_fabric_opts
  2323. #
  2324.  
  2325. # Management IP of fabric (string value)
  2326. #cisco_fc_fabric_address=
  2327.  
  2328. # Fabric user ID (string value)
  2329. #cisco_fc_fabric_user=
  2330.  
  2331. # Password for user (string value)
  2332. #cisco_fc_fabric_password=
  2333.  
  2334. # Connecting port (integer value)
  2335. #cisco_fc_fabric_port=22
  2336.  
  2337. # overridden zoning policy (string value)
  2338. #cisco_zoning_policy=initiator-target
  2339.  
  2340. # overridden zoning activation state (boolean value)
  2341. #cisco_zone_activate=true
  2342.  
  2343. # overridden zone name prefix (string value)
  2344. #cisco_zone_name_prefix=<None>
  2345.  
  2346. # VSAN of the Fabric (string value)
  2347. #cisco_zoning_vsan=<None>
  2348.  
  2349.  
  2350. [database]
  2351.  
  2352. #
  2353. # Options defined in oslo.db
  2354. #
  2355.  
  2356. # The file name to use with SQLite. (string value)
  2357. #sqlite_db=oslo.sqlite
  2358.  
  2359. # If True, SQLite uses synchronous mode. (boolean value)
  2360. #sqlite_synchronous=true
  2361.  
  2362. # The back end to use for the database. (string value)
  2363. # Deprecated group/name - [DEFAULT]/db_backend
  2364. #backend=sqlalchemy
  2365.  
  2366. # The SQLAlchemy connection string to use to connect to the
  2367. # database. (string value)
  2368. # Deprecated group/name - [DEFAULT]/sql_connection
  2369. # Deprecated group/name - [DATABASE]/sql_connection
  2370. # Deprecated group/name - [sql]/connection
  2371. connection=mysql://cinder:<snip>@deepthought/cinder
  2372.  
  2373. # The SQLAlchemy connection string to use to connect to the
  2374. # slave database. (string value)
  2375. #slave_connection=<None>
  2376.  
  2377. # The SQL mode to be used for MySQL sessions. This option,
  2378. # including the default, overrides any server-set SQL mode. To
  2379. # use whatever SQL mode is set by the server configuration,
  2380. # set this to no value. Example: mysql_sql_mode= (string
  2381. # value)
  2382. #mysql_sql_mode=TRADITIONAL
  2383.  
  2384. # Timeout before idle SQL connections are reaped. (integer
  2385. # value)
  2386. # Deprecated group/name - [DEFAULT]/sql_idle_timeout
  2387. # Deprecated group/name - [DATABASE]/sql_idle_timeout
  2388. # Deprecated group/name - [sql]/idle_timeout
  2389. #idle_timeout=3600
  2390.  
  2391. # Minimum number of SQL connections to keep open in a pool.
  2392. # (integer value)
  2393. # Deprecated group/name - [DEFAULT]/sql_min_pool_size
  2394. # Deprecated group/name - [DATABASE]/sql_min_pool_size
  2395. #min_pool_size=1
  2396.  
  2397. # Maximum number of SQL connections to keep open in a pool.
  2398. # (integer value)
  2399. # Deprecated group/name - [DEFAULT]/sql_max_pool_size
  2400. # Deprecated group/name - [DATABASE]/sql_max_pool_size
  2401. #max_pool_size=<None>
  2402.  
  2403. # Maximum number of database connection retries during
  2404. # startup. Set to -1 to specify an infinite retry count.
  2405. # (integer value)
  2406. # Deprecated group/name - [DEFAULT]/sql_max_retries
  2407. # Deprecated group/name - [DATABASE]/sql_max_retries
  2408. #max_retries=10
  2409.  
  2410. # Interval between retries of opening a SQL connection.
  2411. # (integer value)
  2412. # Deprecated group/name - [DEFAULT]/sql_retry_interval
  2413. # Deprecated group/name - [DATABASE]/reconnect_interval
  2414. #retry_interval=10
  2415.  
  2416. # If set, use this value for max_overflow with SQLAlchemy.
  2417. # (integer value)
  2418. # Deprecated group/name - [DEFAULT]/sql_max_overflow
  2419. # Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
  2420. #max_overflow=<None>
  2421.  
  2422. # Verbosity of SQL debugging information: 0=None,
  2423. # 100=Everything. (integer value)
  2424. # Deprecated group/name - [DEFAULT]/sql_connection_debug
  2425. #connection_debug=0
  2426.  
  2427. # Add Python stack traces to SQL as comment strings. (boolean
  2428. # value)
  2429. # Deprecated group/name - [DEFAULT]/sql_connection_trace
  2430. #connection_trace=false
  2431.  
  2432. # If set, use this value for pool_timeout with SQLAlchemy.
  2433. # (integer value)
  2434. # Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
  2435. #pool_timeout=<None>
  2436.  
  2437. # Enable the experimental use of database reconnect on
  2438. # connection lost. (boolean value)
  2439. #use_db_reconnect=false
  2440.  
  2441. # Seconds between database connection retries. (integer value)
  2442. #db_retry_interval=1
  2443.  
  2444. # If True, increases the interval between database connection
  2445. # retries up to db_max_retry_interval. (boolean value)
  2446. #db_inc_retry_interval=true
  2447.  
  2448. # If db_inc_retry_interval is set, the maximum seconds between
  2449. # database connection retries. (integer value)
  2450. #db_max_retry_interval=10
  2451.  
  2452. # Maximum database connection retries before error is raised.
  2453. # Set to -1 to specify an infinite retry count. (integer
  2454. # value)
  2455. #db_max_retries=20
  2456.  
  2457.  
  2458. #
  2459. # Options defined in oslo.db.concurrency
  2460. #
  2461.  
  2462. # Enable the experimental use of thread pooling for all DB API
  2463. # calls (boolean value)
  2464. # Deprecated group/name - [DEFAULT]/dbapi_use_tpool
  2465. #use_tpool=false
  2466.  
  2467.  
  2468. [fc-zone-manager]
  2469.  
  2470. #
  2471. # Options defined in cinder.zonemanager.drivers.brocade.brcd_fc_zone_driver
  2472. #
  2473.  
  2474. # Southbound connector for zoning operation (string value)
  2475. #brcd_sb_connector=cinder.zonemanager.drivers.brocade.brcd_fc_zone_client_cli.BrcdFCZoneClientCLI
  2476.  
  2477.  
  2478. #
  2479. # Options defined in cinder.zonemanager.drivers.cisco.cisco_fc_zone_driver
  2480. #
  2481.  
  2482. # Southbound connector for zoning operation (string value)
  2483. #cisco_sb_connector=cinder.zonemanager.drivers.cisco.cisco_fc_zone_client_cli.CiscoFCZoneClientCLI
  2484.  
  2485.  
  2486. #
  2487. # Options defined in cinder.zonemanager.fc_zone_manager
  2488. #
  2489.  
  2490. # FC Zone Driver responsible for zone management (string
  2491. # value)
  2492. #zone_driver=cinder.zonemanager.drivers.brocade.brcd_fc_zone_driver.BrcdFCZoneDriver
  2493.  
  2494. # Zoning policy configured by user (string value)
  2495. #zoning_policy=initiator-target
  2496.  
  2497. # Comma separated list of fibre channel fabric names. This
  2498. # list of names is used to retrieve other SAN credentials for
  2499. # connecting to each SAN fabric (string value)
  2500. #fc_fabric_names=<None>
  2501.  
  2502. # FC San Lookup Service (string value)
  2503. #fc_san_lookup_service=cinder.zonemanager.drivers.brocade.brcd_fc_san_lookup_service.BrcdFCSanLookupService
  2504.  
  2505.  
  2506. [keymgr]
  2507.  
  2508. #
  2509. # Options defined in cinder.keymgr
  2510. #
  2511.  
  2512. # The full class name of the key manager API class (string
  2513. # value)
  2514. #api_class=cinder.keymgr.conf_key_mgr.ConfKeyManager
  2515.  
  2516.  
  2517. #
  2518. # Options defined in cinder.keymgr.conf_key_mgr
  2519. #
  2520.  
  2521. # Fixed key returned by key manager, specified in hex (string
  2522. # value)
  2523. #fixed_key=<None>
  2524.  
  2525.  
  2526. #
  2527. # Options defined in cinder.keymgr.key_mgr
  2528. #
  2529.  
  2530. # Authentication url for encryption service. (string value)
  2531. #encryption_auth_url=http://localhost:5000/v2.0
  2532.  
  2533. # Url for encryption service. (string value)
  2534. #encryption_api_url=http://localhost:9311/v1
  2535.  
  2536.  
  2537. [keystone_authtoken]
  2538.  
  2539. #
  2540. # Options defined in keystonemiddleware.auth_token
  2541. #
  2542.  
  2543. # Prefix to prepend at the beginning of the path. Deprecated,
  2544. # use identity_uri. (string value)
  2545. #auth_admin_prefix=
  2546.  
  2547. # Host providing the admin Identity API endpoint. Deprecated,
  2548. # use identity_uri. (string value)
  2549. #auth_host=127.0.0.1
  2550.  
  2551. # Port of the admin Identity API endpoint. Deprecated, use
  2552. # identity_uri. (integer value)
  2553. #auth_port=35357
  2554.  
  2555. # Protocol of the admin Identity API endpoint (http or https).
  2556. # Deprecated, use identity_uri. (string value)
  2557. #auth_protocol=https
  2558.  
  2559. # Complete public Identity API endpoint (string value)
  2560. auth_uri=http://deepthought:5000/v2.0
  2561.  
  2562. # Complete admin Identity API endpoint. This should specify
  2563. # the unversioned root endpoint e.g. https://localhost:35357/
  2564. # (string value)
  2565. identity_uri=http://deepthought:35357
  2566.  
  2567. # API version of the admin Identity API endpoint (string
  2568. # value)
  2569. #auth_version=<None>
  2570.  
  2571. # Do not handle authorization requests within the middleware,
  2572. # but delegate the authorization decision to downstream WSGI
  2573. # components (boolean value)
  2574. #delay_auth_decision=false
  2575.  
  2576. # Request timeout value for communicating with Identity API
  2577. # server. (boolean value)
  2578. #http_connect_timeout=<None>
  2579.  
  2580. # How many times are we trying to reconnect when communicating
  2581. # with Identity API Server. (integer value)
  2582. #http_request_max_retries=3
  2583.  
  2584. # This option is deprecated and may be removed in a future
  2585. # release. Single shared secret with the Keystone
  2586. # configuration used for bootstrapping a Keystone
  2587. # installation, or otherwise bypassing the normal
  2588. # authentication process. This option should not be used, use
  2589. # `admin_user` and `admin_password` instead. (string value)
  2590. #admin_token=<None>
  2591.  
  2592. # Keystone account username (string value)
  2593. admin_user=cinder
  2594.  
  2595. # Keystone account password (string value)
  2596. admin_password=<snip>
  2597.  
  2598. # Keystone service account tenant name to validate user tokens
  2599. # (string value)
  2600. admin_tenant_name=service
  2601.  
  2602. # Env key for the swift cache (string value)
  2603. #cache=<None>
  2604.  
  2605. # Required if Keystone server requires client certificate
  2606. # (string value)
  2607. #certfile=<None>
  2608.  
  2609. # Required if Keystone server requires client certificate
  2610. # (string value)
  2611. #keyfile=<None>
  2612.  
  2613. # A PEM encoded Certificate Authority to use when verifying
  2614. # HTTPs connections. Defaults to system CAs. (string value)
  2615. #cafile=<None>
  2616.  
  2617. # Verify HTTPS connections. (boolean value)
  2618. #insecure=false
  2619.  
  2620. # Directory used to cache files related to PKI tokens (string
  2621. # value)
  2622. #signing_dir=<None>
  2623.  
  2624. # Optionally specify a list of memcached server(s) to use for
  2625. # caching. If left undefined, tokens will instead be cached
  2626. # in-process. (list value)
  2627. # Deprecated group/name - [DEFAULT]/memcache_servers
  2628. #memcached_servers=<None>
  2629.  
  2630. # In order to prevent excessive effort spent validating
  2631. # tokens, the middleware caches previously-seen tokens for a
  2632. # configurable duration (in seconds). Set to -1 to disable
  2633. # caching completely. (integer value)
  2634. #token_cache_time=300
  2635.  
  2636. # Determines the frequency at which the list of revoked tokens
  2637. # is retrieved from the Identity service (in seconds). A high
  2638. # number of revocation events combined with a low cache
  2639. # duration may significantly reduce performance. (integer
  2640. # value)
  2641. #revocation_cache_time=10
  2642.  
  2643. # (optional) if defined, indicate whether token data should be
  2644. # authenticated or authenticated and encrypted. Acceptable
  2645. # values are MAC or ENCRYPT. If MAC, token data is
  2646. # authenticated (with HMAC) in the cache. If ENCRYPT, token
  2647. # data is encrypted and authenticated in the cache. If the
  2648. # value is not one of these options or empty, auth_token will
  2649. # raise an exception on initialization. (string value)
  2650. #memcache_security_strategy=<None>
  2651.  
  2652. # (optional, mandatory if memcache_security_strategy is
  2653. # defined) this string is used for key derivation. (string
  2654. # value)
  2655. #memcache_secret_key=<None>
  2656.  
  2657. # (optional) number of seconds memcached server is considered
  2658. # dead before it is tried again. (integer value)
  2659. #memcache_pool_dead_retry=300
  2660.  
  2661. # (optional) max total number of open connections to every
  2662. # memcached server. (integer value)
  2663. #memcache_pool_maxsize=10
  2664.  
  2665. # (optional) socket timeout in seconds for communicating with
  2666. # a memcache server. (integer value)
  2667. #memcache_pool_socket_timeout=3
  2668.  
  2669. # (optional) number of seconds a connection to memcached is
  2670. # held unused in the pool before it is closed. (integer value)
  2671. #memcache_pool_unused_timeout=60
  2672.  
  2673. # (optional) number of seconds that an operation will wait to
  2674. # get a memcache client connection from the pool. (integer
  2675. # value)
  2676. #memcache_pool_conn_get_timeout=10
  2677.  
  2678. # (optional) use the advanced (eventlet safe) memcache client
  2679. # pool. The advanced pool will only work under python 2.x.
  2680. # (boolean value)
  2681. #memcache_use_advanced_pool=false
  2682.  
  2683. # (optional) indicate whether to set the X-Service-Catalog
  2684. # header. If False, middleware will not ask for service
  2685. # catalog on token validation and will not set the X-Service-
  2686. # Catalog header. (boolean value)
  2687. #include_service_catalog=true
  2688.  
  2689. # Used to control the use and type of token binding. Can be
  2690. # set to: "disabled" to not check token binding. "permissive"
  2691. # (default) to validate binding information if the bind type
  2692. # is of a form known to the server and ignore it if not.
  2693. # "strict" like "permissive" but if the bind type is unknown
  2694. # the token will be rejected. "required" any form of token
  2695. # binding is needed to be allowed. Finally the name of a
  2696. # binding method that must be present in tokens. (string
  2697. # value)
  2698. #enforce_token_bind=permissive
  2699.  
  2700. # If true, the revocation list will be checked for cached
  2701. # tokens. This requires that PKI tokens are configured on the
  2702. # Keystone server. (boolean value)
  2703. #check_revocations_for_cached=false
  2704.  
  2705. # Hash algorithms to use for hashing PKI tokens. This may be a
  2706. # single algorithm or multiple. The algorithms are those
  2707. # supported by Python standard hashlib.new(). The hashes will
  2708. # be tried in the order given, so put the preferred one first
  2709. # for performance. The result of the first hash will be stored
  2710. # in the cache. This will typically be set to multiple values
  2711. # only while migrating from a less secure algorithm to a more
  2712. # secure one. Once all the old tokens are expired this option
  2713. # should be set to a single value for better performance.
  2714. # (list value)
  2715. #hash_algorithms=md5
  2716.  
  2717.  
  2718. [matchmaker_redis]
  2719.  
  2720. #
  2721. # Options defined in oslo.messaging
  2722. #
  2723.  
  2724. # Host to locate redis. (string value)
  2725. #host=127.0.0.1
  2726.  
  2727. # Use this port to connect to redis host. (integer value)
  2728. #port=6379
  2729.  
  2730. # Password for Redis server (optional). (string value)
  2731. #password=<None>
  2732.  
  2733.  
  2734. [matchmaker_ring]
  2735.  
  2736. #
  2737. # Options defined in oslo.messaging
  2738. #
  2739.  
  2740. # Matchmaker ring file (JSON). (string value)
  2741. # Deprecated group/name - [DEFAULT]/matchmaker_ringfile
  2742. #ringfile=/etc/oslo/matchmaker_ring.json
  2743.  
  2744.  
  2745. [oslo_messaging_amqp]
  2746.  
  2747. #
  2748. # Options defined in oslo.messaging
  2749. #
  2750. # NOTE: Options in this group are supported when using oslo.messaging >=1.5.0.
  2751.  
  2752. # address prefix used when sending to a specific server
  2753. # (string value)
  2754. #server_request_prefix=exclusive
  2755.  
  2756. # address prefix used when broadcasting to all servers (string
  2757. # value)
  2758. #broadcast_prefix=broadcast
  2759.  
  2760. # address prefix when sending to any server in group (string
  2761. # value)
  2762. #group_request_prefix=unicast
  2763.  
  2764. # Name for the AMQP container (string value)
  2765. #container_name=<None>
  2766.  
  2767. # Timeout for inactive connections (in seconds) (integer
  2768. # value)
  2769. #idle_timeout=0
  2770.  
  2771. # Debug: dump AMQP frames to stdout (boolean value)
  2772. #trace=false
  2773.  
  2774. # CA certificate PEM file for verifing server certificate
  2775. # (string value)
  2776. #ssl_ca_file=
  2777.  
  2778. # Identifying certificate PEM file to present to clients
  2779. # (string value)
  2780. #ssl_cert_file=
  2781.  
  2782. # Private key PEM file used to sign cert_file certificate
  2783. # (string value)
  2784. #ssl_key_file=
  2785.  
  2786. # Password for decrypting ssl_key_file (if encrypted) (string
  2787. # value)
  2788. #ssl_key_password=<None>
  2789.  
  2790. # Accept clients using either SSL or plain TCP (boolean value)
  2791. #allow_insecure_clients=false
  2792.  
  2793.  
  2794. [profiler]
  2795.  
  2796. #
  2797. # Options defined in cinder.service
  2798. #
  2799.  
  2800. # If False fully disable profiling feature. (boolean value)
  2801. #profiler_enabled=false
  2802.  
  2803. # If False doesn't trace SQL requests. (boolean value)
  2804. #trace_sqlalchemy=false
  2805.  
  2806.  
  2807. [ssl]
  2808.  
  2809. #
  2810. # Options defined in cinder.openstack.common.sslutils
  2811. #
  2812.  
  2813. # CA certificate file to use to verify connecting clients
  2814. # (string value)
  2815. #ca_file=<None>
  2816.  
  2817. # Certificate file to use when starting the server securely
  2818. # (string value)
  2819. #cert_file=<None>
  2820.  
  2821. # Private key file to use when starting the server securely
  2822. # (string value)
  2823. #key_file=<None>
  2824.  
  2825. [lvmg]
  2826. iscsi_helper=lioadm
  2827. volume_group=cinder-volumes
  2828. volume_driver=cinder.volume.drivers.lvm.LVMISCSIDriver
  2829. iscsi_ip_helper=10.1.99.250
  2830. volume_backend_name=LVM_iSCSI
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement