Advertisement
Guest User

cinder.conf

a guest
Apr 7th, 2016
531
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 121.37 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. #
  4. # From cinder
  5. #
  6.  
  7. # Backup metadata version to be used when backing up volume metadata. If this
  8. # number is bumped, make sure the service doing the restore supports the new
  9. # version. (integer value)
  10. #backup_metadata_version = 2
  11.  
  12. # The number of chunks or objects, for which one Ceilometer notification will
  13. # be sent (integer value)
  14. #backup_object_number_per_notification = 10
  15.  
  16. # Interval, in seconds, between two progress notifications reporting the backup
  17. # status (integer value)
  18. #backup_timer_interval = 120
  19.  
  20. # The maximum number of items that a collection resource returns in a single
  21. # response (integer value)
  22. #osapi_max_limit = 1000
  23.  
  24. # Base URL that will be presented to users in links to the OpenStack Volume API
  25. # (string value)
  26. # Deprecated group/name - [DEFAULT]/osapi_compute_link_prefix
  27. #osapi_volume_base_URL = <None>
  28.  
  29. # Ceph configuration file to use. (string value)
  30. #backup_ceph_conf = /etc/ceph/ceph.conf
  31.  
  32. # The Ceph user to connect with. Default here is to use the same user as for
  33. # Cinder volumes. If not using cephx this should be set to None. (string value)
  34. #backup_ceph_user = cinder
  35.  
  36. # The chunk size, in bytes, that a backup is broken into before transfer to the
  37. # Ceph object store. (integer value)
  38. #backup_ceph_chunk_size = 134217728
  39.  
  40. # The Ceph pool where volume backups are stored. (string value)
  41. #backup_ceph_pool = backups
  42.  
  43. # RBD stripe unit to use when creating a backup image. (integer value)
  44. #backup_ceph_stripe_unit = 0
  45.  
  46. # RBD stripe count to use when creating a backup image. (integer value)
  47. #backup_ceph_stripe_count = 0
  48.  
  49. # If True, always discard excess bytes when restoring volumes i.e. pad with
  50. # zeroes. (boolean value)
  51. #restore_discard_excess_bytes = true
  52.  
  53. # File with the list of available smbfs shares. (string value)
  54. #smbfs_shares_config = /etc/cinder/smbfs_shares
  55.  
  56. # Default format that will be used when creating volumes if no volume format is
  57. # specified. (string value)
  58. # Allowed values: raw, qcow2, vhd, vhdx
  59. #smbfs_default_volume_format = qcow2
  60.  
  61. # Create volumes as sparsed files which take no space rather than regular files
  62. # when using raw format, in which case volume creation takes lot of time.
  63. # (boolean value)
  64. #smbfs_sparsed_volumes = true
  65.  
  66. # Percent of ACTUAL usage of the underlying volume before no new volumes can be
  67. # allocated to the volume destination. (floating point value)
  68. #smbfs_used_ratio = 0.95
  69.  
  70. # This will compare the allocated to available space on the volume destination.
  71. # If the ratio exceeds this number, the destination will no longer be valid.
  72. # (floating point value)
  73. #smbfs_oversub_ratio = 1.0
  74.  
  75. # Base dir containing mount points for smbfs shares. (string value)
  76. #smbfs_mount_point_base = $state_path/mnt
  77.  
  78. # Mount options passed to the smbfs client. See mount.cifs man page for
  79. # details. (string value)
  80. #smbfs_mount_options = noperm,file_mode=0775,dir_mode=0775
  81.  
  82. # Compression algorithm (None to disable) (string value)
  83. #backup_compression_algorithm = zlib
  84. backup_compression_algorithm = zlib
  85.  
  86. # Use thin provisioning for SAN volumes? (boolean value)
  87. #san_thin_provision = true
  88.  
  89. # IP address of SAN controller (string value)
  90. #san_ip =
  91.  
  92. # Username for SAN controller (string value)
  93. #san_login = admin
  94.  
  95. # Password for SAN controller (string value)
  96. #san_password =
  97.  
  98. # Filename of private key to use for SSH authentication (string value)
  99. #san_private_key =
  100.  
  101. # Cluster name to use for creating volumes (string value)
  102. #san_clustername =
  103.  
  104. # SSH port to use with SAN (integer value)
  105. # Minimum value: 1
  106. # Maximum value: 65535
  107. #san_ssh_port = 22
  108.  
  109. # Execute commands locally instead of over SSH; use if the volume service is
  110. # running on the SAN device (boolean value)
  111. #san_is_local = false
  112.  
  113. # SSH connection timeout in seconds (integer value)
  114. #ssh_conn_timeout = 30
  115.  
  116. # Minimum ssh connections in the pool (integer value)
  117. #ssh_min_pool_conn = 1
  118.  
  119. # Maximum ssh connections in the pool (integer value)
  120. #ssh_max_pool_conn = 5
  121.  
  122. # Configuration file for HDS NFS cinder plugin (string value)
  123. #hds_hnas_nfs_config_file = /opt/hds/hnas/cinder_nfs_conf.xml
  124.  
  125. # Global backend request timeout, in seconds. (integer value)
  126. #violin_request_timeout = 300
  127.  
  128. # Option to enable strict host key checking. When set to "True" Cinder will
  129. # only connect to systems with a host key present in the configured
  130. # "ssh_hosts_key_file". When set to "False" the host key will be saved upon
  131. # first connection and used for subsequent connections. Default=False (boolean
  132. # value)
  133. #strict_ssh_host_key_policy = false
  134.  
  135. # File containing SSH host keys for the systems with which Cinder needs to
  136. # communicate. OPTIONAL: Default=$state_path/ssh_known_hosts (string value)
  137. #ssh_hosts_key_file = $state_path/ssh_known_hosts
  138.  
  139. # The storage family type used on the storage system; valid values are
  140. # ontap_7mode for using Data ONTAP operating in 7-Mode, ontap_cluster for using
  141. # clustered Data ONTAP, or eseries for using E-Series. (string value)
  142. # Allowed values: ontap_7mode, ontap_cluster, eseries
  143. #netapp_storage_family = ontap_cluster
  144.  
  145. # The storage protocol to be used on the data path with the storage system.
  146. # (string value)
  147. # Allowed values: iscsi, fc, nfs
  148. #netapp_storage_protocol = <None>
  149.  
  150. # The hostname (or IP address) for the storage system or proxy server. (string
  151. # value)
  152. #netapp_server_hostname = <None>
  153.  
  154. # The TCP port to use for communication with the storage system or proxy
  155. # server. If not specified, Data ONTAP drivers will use 80 for HTTP and 443 for
  156. # HTTPS; E-Series will use 8080 for HTTP and 8443 for HTTPS. (integer value)
  157. #netapp_server_port = <None>
  158.  
  159. # The transport protocol used when communicating with the storage system or
  160. # proxy server. (string value)
  161. # Allowed values: http, https
  162. #netapp_transport_type = http
  163.  
  164. # Administrative user account name used to access the storage system or proxy
  165. # server. (string value)
  166. #netapp_login = <None>
  167.  
  168. # Password for the administrative user account specified in the netapp_login
  169. # option. (string value)
  170. #netapp_password = <None>
  171.  
  172. # This option specifies the virtual storage server (Vserver) name on the
  173. # storage cluster on which provisioning of block storage volumes should occur.
  174. # (string value)
  175. #netapp_vserver = <None>
  176.  
  177. # The vFiler unit on which provisioning of block storage volumes will be done.
  178. # This option is only used by the driver when connecting to an instance with a
  179. # storage family of Data ONTAP operating in 7-Mode. Only use this option when
  180. # utilizing the MultiStore feature on the NetApp storage system. (string value)
  181. #netapp_vfiler = <None>
  182.  
  183. # The name of the config.conf stanza for a Data ONTAP (7-mode) HA partner.
  184. # This option is only used by the driver when connecting to an instance with a
  185. # storage family of Data ONTAP operating in 7-Mode, and it is required if the
  186. # storage protocol selected is FC. (string value)
  187. #netapp_partner_backend_name = <None>
  188.  
  189. # The quantity to be multiplied by the requested volume size to ensure enough
  190. # space is available on the virtual storage server (Vserver) to fulfill the
  191. # volume creation request. Note: this option is deprecated and will be removed
  192. # in favor of "reserved_percentage" in the Mitaka release. (floating point
  193. # value)
  194. #netapp_size_multiplier = 1.2
  195.  
  196. # This option determines if storage space is reserved for LUN allocation. If
  197. # enabled, LUNs are thick provisioned. If space reservation is disabled,
  198. # storage space is allocated on demand. (string value)
  199. # Allowed values: enabled, disabled
  200. #netapp_lun_space_reservation = enabled
  201.  
  202. # If the percentage of available space for an NFS share has dropped below the
  203. # value specified by this option, the NFS image cache will be cleaned. (integer
  204. # value)
  205. #thres_avl_size_perc_start = 20
  206.  
  207. # When the percentage of available space on an NFS share has reached the
  208. # percentage specified by this option, the driver will stop clearing files from
  209. # the NFS image cache that have not been accessed in the last M minutes, where
  210. # M is the value of the expiry_thres_minutes configuration option. (integer
  211. # value)
  212. #thres_avl_size_perc_stop = 60
  213.  
  214. # This option specifies the threshold for last access time for images in the
  215. # NFS image cache. When a cache cleaning cycle begins, images in the cache that
  216. # have not been accessed in the last M minutes, where M is the value of this
  217. # parameter, will be deleted from the cache to create free space on the NFS
  218. # share. (integer value)
  219. #expiry_thres_minutes = 720
  220.  
  221. # This option is used to specify the path to the E-Series proxy application on
  222. # a proxy server. The value is combined with the value of the
  223. # netapp_transport_type, netapp_server_hostname, and netapp_server_port options
  224. # to create the URL used by the driver to connect to the proxy application.
  225. # (string value)
  226. #netapp_webservice_path = /devmgr/v2
  227.  
  228. # This option is only utilized when the storage family is configured to
  229. # eseries. This option is used to restrict provisioning to the specified
  230. # controllers. Specify the value of this option to be a comma separated list of
  231. # controller hostnames or IP addresses to be used for provisioning. (string
  232. # value)
  233. #netapp_controller_ips = <None>
  234.  
  235. # Password for the NetApp E-Series storage array. (string value)
  236. #netapp_sa_password = <None>
  237.  
  238. # This option specifies whether the driver should allow operations that require
  239. # multiple attachments to a volume. An example would be live migration of
  240. # servers that have volumes attached. When enabled, this backend is limited to
  241. # 256 total volumes in order to guarantee volumes can be accessed by more than
  242. # one host. (boolean value)
  243. #netapp_enable_multiattach = false
  244.  
  245. # This option specifies the path of the NetApp copy offload tool binary. Ensure
  246. # that the binary has execute permissions set which allow the effective user of
  247. # the cinder-volume process to execute the file. (string value)
  248. #netapp_copyoffload_tool_path = <None>
  249.  
  250. # This option defines the type of operating system that will access a LUN
  251. # exported from Data ONTAP; it is assigned to the LUN at the time it is
  252. # created. (string value)
  253. #netapp_lun_ostype = <None>
  254.  
  255. # This option defines the type of operating system for all initiators that can
  256. # access a LUN. This information is used when mapping LUNs to individual hosts
  257. # or groups of hosts. (string value)
  258. # Deprecated group/name - [DEFAULT]/netapp_eseries_host_type
  259. #netapp_host_type = <None>
  260.  
  261. # This option is used to restrict provisioning to the specified pools. Specify
  262. # the value of this option to be a regular expression which will be applied to
  263. # the names of objects from the storage backend which represent pools in
  264. # Cinder. This option is only utilized when the storage protocol is configured
  265. # to use iSCSI or FC. (string value)
  266. # Deprecated group/name - [DEFAULT]/netapp_volume_list
  267. # Deprecated group/name - [DEFAULT]/netapp_storage_pools
  268. #netapp_pool_name_search_pattern = (.+)
  269.  
  270. # Base dir containing mount point for gluster share. (string value)
  271. #glusterfs_backup_mount_point = $state_path/backup_mount
  272.  
  273. # GlusterFS share in <hostname|ipv4addr|ipv6addr>:<gluster_vol_name> format.
  274. # Eg: 1.2.3.4:backup_vol (string value)
  275. #glusterfs_backup_share = <None>
  276.  
  277. # Volume prefix for the backup id when backing up to TSM (string value)
  278. #backup_tsm_volume_prefix = backup
  279.  
  280. # TSM password for the running username (string value)
  281. #backup_tsm_password = password
  282.  
  283. # Enable or Disable compression for backups (boolean value)
  284. #backup_tsm_compression = true
  285.  
  286. # Request for FC Zone creating host group (boolean value)
  287. #hpxp_zoning_request = false
  288.  
  289. # Type of storage command line interface (string value)
  290. #hpxp_storage_cli = <None>
  291.  
  292. # ID of storage system (string value)
  293. #hpxp_storage_id = <None>
  294.  
  295. # Pool of storage system (string value)
  296. #hpxp_pool = <None>
  297.  
  298. # Thin pool of storage system (string value)
  299. #hpxp_thin_pool = <None>
  300.  
  301. # Logical device range of storage system (string value)
  302. #hpxp_ldev_range = <None>
  303.  
  304. # Default copy method of storage system. There are two valid values: "FULL"
  305. # specifies that a full copy; "THIN" specifies that a thin copy. Default value
  306. # is "FULL" (string value)
  307. #hpxp_default_copy_method = FULL
  308.  
  309. # Copy speed of storage system (integer value)
  310. #hpxp_copy_speed = 3
  311.  
  312. # Interval to check copy (integer value)
  313. #hpxp_copy_check_interval = 3
  314.  
  315. # Interval to check copy asynchronously (integer value)
  316. #hpxp_async_copy_check_interval = 10
  317.  
  318. # Target port names for host group or iSCSI target (list value)
  319. #hpxp_target_ports = <None>
  320.  
  321. # Target port names of compute node for host group or iSCSI target (list value)
  322. #hpxp_compute_target_ports = <None>
  323.  
  324. # Request for creating host group or iSCSI target (boolean value)
  325. #hpxp_group_request = false
  326.  
  327. # Instance numbers for HORCM (list value)
  328. #hpxp_horcm_numbers = 200,201
  329.  
  330. # Username of storage system for HORCM (string value)
  331. #hpxp_horcm_user = <None>
  332.  
  333. # Add to HORCM configuration (boolean value)
  334. #hpxp_horcm_add_conf = true
  335.  
  336. # Resource group name of storage system for HORCM (string value)
  337. #hpxp_horcm_resource_name = meta_resource
  338.  
  339. # Only discover a specific name of host group or iSCSI target (boolean value)
  340. #hpxp_horcm_name_only_discovery = false
  341.  
  342. # File name of clean sqlite db (string value)
  343. #sqlite_clean_db = clean.sqlite
  344.  
  345. # Storage system storage pool for volumes (string value)
  346. #storwize_svc_volpool_name = volpool
  347.  
  348. # Storage system space-efficiency parameter for volumes (percentage) (integer
  349. # value)
  350. # Minimum value: -1
  351. # Maximum value: 100
  352. #storwize_svc_vol_rsize = 2
  353.  
  354. # Storage system threshold for volume capacity warnings (percentage) (integer
  355. # value)
  356. # Minimum value: -1
  357. # Maximum value: 100
  358. #storwize_svc_vol_warning = 0
  359.  
  360. # Storage system autoexpand parameter for volumes (True/False) (boolean value)
  361. #storwize_svc_vol_autoexpand = true
  362.  
  363. # Storage system grain size parameter for volumes (32/64/128/256) (integer
  364. # value)
  365. #storwize_svc_vol_grainsize = 256
  366.  
  367. # Storage system compression option for volumes (boolean value)
  368. #storwize_svc_vol_compression = false
  369.  
  370. # Enable Easy Tier for volumes (boolean value)
  371. #storwize_svc_vol_easytier = true
  372.  
  373. # The I/O group in which to allocate volumes (integer value)
  374. #storwize_svc_vol_iogrp = 0
  375.  
  376. # Maximum number of seconds to wait for FlashCopy to be prepared. (integer
  377. # value)
  378. # Minimum value: 1
  379. # Maximum value: 600
  380. #storwize_svc_flashcopy_timeout = 120
  381.  
  382. # Connection protocol (iSCSI/FC) (string value)
  383. #storwize_svc_connection_protocol = iSCSI
  384.  
  385. # Configure CHAP authentication for iSCSI connections (Default: Enabled)
  386. # (boolean value)
  387. #storwize_svc_iscsi_chap_enabled = true
  388.  
  389. # Connect with multipath (FC only; iSCSI multipath is controlled by Nova)
  390. # (boolean value)
  391. #storwize_svc_multipath_enabled = false
  392.  
  393. # Allows vdisk to multi host mapping (boolean value)
  394. #storwize_svc_multihostmap_enabled = true
  395.  
  396. # Indicate whether svc driver is compatible for NPIV setup. If it is
  397. # compatible, it will allow no wwpns being returned on get_conn_fc_wwpns during
  398. # initialize_connection. It should always be set to True. It will be deprecated
  399. # and removed in M release. (boolean value)
  400. #storwize_svc_npiv_compatibility_mode = true
  401.  
  402. # Allow tenants to specify QOS on create (boolean value)
  403. #storwize_svc_allow_tenant_qos = false
  404.  
  405. # If operating in stretched cluster mode, specify the name of the pool in which
  406. # mirrored copies are stored.Example: "pool2" (string value)
  407. #storwize_svc_stretched_cluster_partner = <None>
  408.  
  409. # Driver to use for backups. (string value)
  410. #backup_driver = cinder.backup.drivers.swift
  411. backup_driver = cinder.backup.drivers.swift
  412.  
  413. # Offload pending backup delete during backup service startup. (boolean value)
  414. #backup_service_inithost_offload = false
  415.  
  416. # Make exception message format errors fatal. (boolean value)
  417. #fatal_exception_format_errors = false
  418.  
  419. # IP address of this host (string value)
  420. #my_ip = 172.20.1.16
  421.  
  422. # Default glance host name or IP (string value)
  423. #glance_host = $my_ip
  424. glance_host = 192.168.1.10
  425.  
  426. # Default glance port (integer value)
  427. # Minimum value: 1
  428. # Maximum value: 65535
  429. #glance_port = 9292
  430.  
  431. # A list of the glance API servers available to cinder ([hostname|ip]:port)
  432. # (list value)
  433. #glance_api_servers = $glance_host:$glance_port
  434.  
  435. # Version of the glance API to use (integer value)
  436. #glance_api_version = 1
  437.  
  438. # Number retries when downloading an image from glance (integer value)
  439. #glance_num_retries = 0
  440.  
  441. # Allow to perform insecure SSL (https) requests to glance (boolean value)
  442. #glance_api_insecure = false
  443.  
  444. # Enables or disables negotiation of SSL layer compression. In some cases
  445. # disabling compression can improve data throughput, such as when high network
  446. # bandwidth is available and you use compressed image formats like qcow2.
  447. # (boolean value)
  448. #glance_api_ssl_compression = false
  449.  
  450. # Location of ca certificates file to use for glance client requests. (string
  451. # value)
  452. #glance_ca_certificates_file = <None>
  453.  
  454. # http/https timeout value for glance operations. If no value (None) is
  455. # supplied here, the glanceclient default value is used. (integer value)
  456. #glance_request_timeout = <None>
  457.  
  458. # The topic that scheduler nodes listen on (string value)
  459. #scheduler_topic = cinder-scheduler
  460.  
  461. # The topic that volume nodes listen on (string value)
  462. #volume_topic = cinder-volume
  463.  
  464. # The topic that volume backup nodes listen on (string value)
  465. #backup_topic = cinder-backup
  466. backup_topic = cinder-backup
  467.  
  468. # DEPRECATED: Deploy v1 of the Cinder API. (boolean value)
  469. #enable_v1_api = true
  470. enable_v1_api = True
  471.  
  472. # Deploy v2 of the Cinder API. (boolean value)
  473. #enable_v2_api = true
  474. enable_v2_api = True
  475.  
  476. # Enables or disables rate limit of the API. (boolean value)
  477. #api_rate_limit = true
  478.  
  479. # Specify list of extensions to load when using osapi_volume_extension option
  480. # with cinder.api.contrib.select_extensions (list value)
  481. #osapi_volume_ext_list =
  482.  
  483. # osapi volume extension to load (multi valued)
  484. #osapi_volume_extension = cinder.api.contrib.standard_extensions
  485.  
  486. # Full class name for the Manager for volume (string value)
  487. #volume_manager = cinder.volume.manager.VolumeManager
  488.  
  489. # Full class name for the Manager for volume backup (string value)
  490. #backup_manager = cinder.backup.manager.BackupManager
  491. backup_manager = cinder.backup.manager.BackupManager
  492.  
  493. # Full class name for the Manager for scheduler (string value)
  494. #scheduler_manager = cinder.scheduler.manager.SchedulerManager
  495.  
  496. # Name of this node. This can be an opaque identifier. It is not necessarily a
  497. # host name, FQDN, or IP address. (string value)
  498. #host = c1bg.rdu2.centos.org
  499.  
  500. # Availability zone of this node (string value)
  501. #storage_availability_zone = nova
  502. storage_availability_zone = nova
  503.  
  504. # Default availability zone for new volumes. If not set, the
  505. # storage_availability_zone option value is used as the default for new
  506. # volumes. (string value)
  507. #default_availability_zone = <None>
  508. default_availability_zone = nova
  509.  
  510. # If the requested Cinder availability zone is unavailable, fall back to the
  511. # value of default_availability_zone, then storage_availability_zone, instead
  512. # of failing. (boolean value)
  513. #allow_availability_zone_fallback = false
  514.  
  515. # Default volume type to use (string value)
  516. #default_volume_type = <None>
  517.  
  518. # Time period for which to generate volume usages. The options are hour, day,
  519. # month, or year. (string value)
  520. #volume_usage_audit_period = month
  521.  
  522. # Path to the rootwrap configuration file to use for running commands as root
  523. # (string value)
  524. #rootwrap_config = /etc/cinder/rootwrap.conf
  525.  
  526. # Enable monkey patching (boolean value)
  527. #monkey_patch = false
  528.  
  529. # List of modules/decorators to monkey patch (list value)
  530. #monkey_patch_modules =
  531.  
  532. # Maximum time since last check-in for a service to be considered up (integer
  533. # value)
  534. #service_down_time = 60
  535.  
  536. # The full class name of the volume API class to use (string value)
  537. #volume_api_class = cinder.volume.api.API
  538.  
  539. # The full class name of the volume backup API class (string value)
  540. #backup_api_class = cinder.backup.api.API
  541. backup_api_class = cinder.backup.api.API
  542.  
  543. # The strategy to use for auth. Supports noauth, keystone, and deprecated.
  544. # (string value)
  545. # Allowed values: noauth, keystone, deprecated
  546. #auth_strategy = keystone
  547. auth_strategy = keystone
  548.  
  549. # A list of backend names to use. These backend names should be backed by a
  550. # unique [CONFIG] group with its options (list value)
  551. #enabled_backends = <None>
  552. enabled_backends = lvm
  553.  
  554. # Whether snapshots count against gigabyte quota (boolean value)
  555. #no_snapshot_gb_quota = false
  556.  
  557. # The full class name of the volume transfer API class (string value)
  558. #transfer_api_class = cinder.transfer.api.API
  559.  
  560. # The full class name of the volume replication API class (string value)
  561. #replication_api_class = cinder.replication.api.API
  562.  
  563. # The full class name of the consistencygroup API class (string value)
  564. #consistencygroup_api_class = cinder.consistencygroup.api.API
  565.  
  566. # OpenStack privileged account username. Used for requests to other services
  567. # (such as Nova) that require an account with special rights. (string value)
  568. #os_privileged_user_name = <None>
  569.  
  570. # Password associated with the OpenStack privileged account. (string value)
  571. #os_privileged_user_password = <None>
  572.  
  573. # Tenant name associated with the OpenStack privileged account. (string value)
  574. #os_privileged_user_tenant = <None>
  575.  
  576. # Auth URL associated with the OpenStack privileged account. (string value)
  577. #os_privileged_user_auth_url = <None>
  578.  
  579. # Multiplier used for weighing volume capacity. Negative numbers mean to stack
  580. # vs spread. (floating point value)
  581. #capacity_weight_multiplier = 1.0
  582.  
  583. # Multiplier used for weighing volume capacity. Negative numbers mean to stack
  584. # vs spread. (floating point value)
  585. #allocated_capacity_weight_multiplier = -1.0
  586.  
  587. # IP address of sheep daemon. (string value)
  588. #sheepdog_store_address = 127.0.0.1
  589.  
  590. # Port of sheep daemon. (integer value)
  591. # Minimum value: 1
  592. # Maximum value: 65535
  593. #sheepdog_store_port = 7000
  594.  
  595. # Specifies the path of the GPFS directory where Block Storage volume and
  596. # snapshot files are stored. (string value)
  597. #gpfs_mount_point_base = <None>
  598.  
  599. # Specifies the path of the Image service repository in GPFS. Leave undefined
  600. # if not storing images in GPFS. (string value)
  601. #gpfs_images_dir = <None>
  602.  
  603. # Specifies the type of image copy to be used. Set this when the Image service
  604. # repository also uses GPFS so that image files can be transferred efficiently
  605. # from the Image service to the Block Storage service. There are two valid
  606. # values: "copy" specifies that a full copy of the image is made;
  607. # "copy_on_write" specifies that copy-on-write optimization strategy is used
  608. # and unmodified blocks of the image file are shared efficiently. (string
  609. # value)
  610. # Allowed values: copy, copy_on_write, <None>
  611. #gpfs_images_share_mode = <None>
  612.  
  613. # Specifies an upper limit on the number of indirections required to reach a
  614. # specific block due to snapshots or clones. A lengthy chain of copy-on-write
  615. # snapshots or clones can have a negative impact on performance, but improves
  616. # space utilization. 0 indicates unlimited clone depth. (integer value)
  617. #gpfs_max_clone_depth = 0
  618.  
  619. # Specifies that volumes are created as sparse files which initially consume no
  620. # space. If set to False, the volume is created as a fully allocated file, in
  621. # which case, creation may take a significantly longer time. (boolean value)
  622. #gpfs_sparse_volumes = true
  623.  
  624. # Specifies the storage pool that volumes are assigned to. By default, the
  625. # system storage pool is used. (string value)
  626. #gpfs_storage_pool = system
  627.  
  628. # Set 512 byte emulation on volume creation; (boolean value)
  629. #sf_emulate_512 = true
  630.  
  631. # Allow tenants to specify QOS on create (boolean value)
  632. #sf_allow_tenant_qos = false
  633.  
  634. # Create SolidFire accounts with this prefix. Any string can be used here, but
  635. # the string "hostname" is special and will create a prefix using the cinder
  636. # node hostname (previous default behavior). The default is NO prefix. (string
  637. # value)
  638. #sf_account_prefix = <None>
  639.  
  640. # Account name on the SolidFire Cluster to use as owner of template/cache
  641. # volumes (created if does not exist). (string value)
  642. #sf_template_account_name = openstack-vtemplate
  643.  
  644. # Create an internal cache of copy of images when a bootable volume is created
  645. # to eliminate fetch from glance and qemu-conversion on subsequent calls.
  646. # (boolean value)
  647. #sf_allow_template_caching = true
  648.  
  649. # Overrides default cluster SVIP with the one specified. This is required or
  650. # deployments that have implemented the use of VLANs for iSCSI networks in
  651. # their cloud. (string value)
  652. #sf_svip = <None>
  653.  
  654. # Create an internal mapping of volume IDs and account. Optimizes lookups and
  655. # performance at the expense of memory, very large deployments may want to
  656. # consider setting to False. (boolean value)
  657. #sf_enable_volume_mapping = true
  658.  
  659. # SolidFire API port. Useful if the device api is behind a proxy on a different
  660. # port. (integer value)
  661. # Minimum value: 1
  662. # Maximum value: 65535
  663. #sf_api_port = 443
  664.  
  665. # IBMNAS platform type to be used as backend storage; valid values are - v7ku :
  666. # for using IBM Storwize V7000 Unified, sonas : for using IBM Scale Out NAS,
  667. # gpfs-nas : for using NFS based IBM GPFS deployments. (string value)
  668. # Allowed values: v7ku, sonas, gpfs-nas
  669. #ibmnas_platform_type = v7ku
  670.  
  671. # The URL of the Swift endpoint (string value)
  672. #backup_swift_url = <None>
  673. backup_swift_url = http://192.168.1.10:8080/v1/AUTH_
  674.  
  675. # Info to match when looking for swift in the service catalog. Format is:
  676. # separated values of the form: <service_type>:<service_name>:<endpoint_type> -
  677. # Only used if backup_swift_url is unset (string value)
  678. #swift_catalog_info = object-store:swift:publicURL
  679.  
  680. # Swift authentication mechanism (string value)
  681. #backup_swift_auth = per_user
  682.  
  683. # Swift authentication version. Specify "1" for auth 1.0, or "2" for auth 2.0
  684. # (string value)
  685. #backup_swift_auth_version = 1
  686.  
  687. # Swift tenant/account name. Required when connecting to an auth 2.0 system
  688. # (string value)
  689. #backup_swift_tenant = <None>
  690.  
  691. # Swift user name (string value)
  692. #backup_swift_user = <None>
  693.  
  694. # Swift key for authentication (string value)
  695. #backup_swift_key = <None>
  696.  
  697. # The default Swift container to use (string value)
  698. #backup_swift_container = volumebackups
  699. backup_swift_container = volumes_backup
  700.  
  701. # The size in bytes of Swift backup objects (integer value)
  702. #backup_swift_object_size = 52428800
  703. backup_swift_object_size = 52428800
  704.  
  705. # The size in bytes that changes are tracked for incremental backups.
  706. # backup_swift_object_size has to be multiple of backup_swift_block_size.
  707. # (integer value)
  708. #backup_swift_block_size = 32768
  709.  
  710. # The number of retries to make for Swift operations (integer value)
  711. #backup_swift_retry_attempts = 3
  712. backup_swift_retry_attempts = 3
  713.  
  714. # The backoff time in seconds between Swift retries (integer value)
  715. #backup_swift_retry_backoff = 2
  716. backup_swift_retry_backoff = 2
  717.  
  718. # Enable or Disable the timer to send the periodic progress notifications to
  719. # Ceilometer when backing up the volume to the Swift backend storage. The
  720. # default value is True to enable the timer. (boolean value)
  721. #backup_swift_enable_progress_timer = true
  722.  
  723. # Location of the CA certificate file to use for swift client requests. (string
  724. # value)
  725. #backup_swift_ca_cert_file = <None>
  726.  
  727. # These values will be used for CloudByte storage's addQos API call. (dict
  728. # value)
  729. #cb_add_qosgroup = graceallowed:false,iops:10,iopscontrol:true,latency:15,memlimit:0,networkspeed:0,throughput:0,tpcontrol:false
  730.  
  731. # These values will be used for CloudByte storage's createVolume API call.
  732. # (dict value)
  733. #cb_create_volume = blocklength:512B,compression:off,deduplication:off,protocoltype:ISCSI,recordsize:16k,sync:always
  734.  
  735. # Driver will use this API key to authenticate against the CloudByte storage's
  736. # management interface. (string value)
  737. #cb_apikey = <None>
  738.  
  739. # CloudByte storage specific account name. This maps to a project name in
  740. # OpenStack. (string value)
  741. #cb_account_name = <None>
  742.  
  743. # This corresponds to the name of Tenant Storage Machine (TSM) in CloudByte
  744. # storage. A volume will be created in this TSM. (string value)
  745. #cb_tsm_name = <None>
  746.  
  747. # A retry value in seconds. Will be used by the driver to check if volume
  748. # creation was successful in CloudByte storage. (integer value)
  749. #cb_confirm_volume_create_retry_interval = 5
  750.  
  751. # Will confirm a successful volume creation in CloudByte storage by making this
  752. # many number of attempts. (integer value)
  753. #cb_confirm_volume_create_retries = 3
  754.  
  755. # A retry value in seconds. Will be used by the driver to check if volume
  756. # deletion was successful in CloudByte storage. (integer value)
  757. #cb_confirm_volume_delete_retry_interval = 5
  758.  
  759. # Will confirm a successful volume deletion in CloudByte storage by making this
  760. # many number of attempts. (integer value)
  761. #cb_confirm_volume_delete_retries = 3
  762.  
  763. # This corresponds to the discovery authentication group in CloudByte storage.
  764. # Chap users are added to this group. Driver uses the first user found for this
  765. # group. Default value is None. (string value)
  766. #cb_auth_group = None
  767.  
  768. # Interval, in seconds, between nodes reporting state to datastore (integer
  769. # value)
  770. #report_interval = 10
  771.  
  772. # Interval, in seconds, between running periodic tasks (integer value)
  773. #periodic_interval = 60
  774.  
  775. # Range, in seconds, to randomly delay when starting the periodic task
  776. # scheduler to reduce stampeding. (Disable by setting to 0) (integer value)
  777. #periodic_fuzzy_delay = 60
  778.  
  779. # IP address on which OpenStack Volume API listens (string value)
  780. #osapi_volume_listen = 0.0.0.0
  781. osapi_volume_listen = 0.0.0.0
  782.  
  783. # Port on which OpenStack Volume API listens (integer value)
  784. # Minimum value: 1
  785. # Maximum value: 65535
  786. #osapi_volume_listen_port = 8776
  787.  
  788. # Number of workers for OpenStack Volume API service. The default is equal to
  789. # the number of CPUs available. (integer value)
  790. #osapi_volume_workers = <None>
  791. osapi_volume_workers = 2
  792.  
  793. # The full class name of the compute API class to use (string value)
  794. #compute_api_class = cinder.compute.nova.API
  795.  
  796. # Number of nodes that should replicate the data. (string value)
  797. #drbdmanage_redundancy = 1
  798.  
  799. # Pool or Vdisk name to use for volume creation. (string value)
  800. #dothill_backend_name = A
  801.  
  802. # linear (for Vdisk) or virtual (for Pool). (string value)
  803. # Allowed values: linear, virtual
  804. #dothill_backend_type = virtual
  805.  
  806. # DotHill API interface protocol. (string value)
  807. # Allowed values: http, https
  808. #dothill_api_protocol = https
  809.  
  810. # Whether to verify DotHill array SSL certificate. (boolean value)
  811. #dothill_verify_certificate = false
  812.  
  813. # DotHill array SSL certificate path. (string value)
  814. #dothill_verify_certificate_path = <None>
  815.  
  816. # List of comma-separated target iSCSI IP addresses. (list value)
  817. #dothill_iscsi_ips =
  818.  
  819. # File with the list of available gluster shares (string value)
  820. #glusterfs_shares_config = /etc/cinder/glusterfs_shares
  821.  
  822. # Base dir containing mount points for gluster shares. (string value)
  823. #glusterfs_mount_point_base = $state_path/mnt
  824.  
  825. # REST API authorization token. (string value)
  826. #pure_api_token = <None>
  827.  
  828. # ID of the project which will be used as the Cinder internal tenant. (string
  829. # value)
  830. #cinder_internal_tenant_project_id = <None>
  831.  
  832. # ID of the user to be used in volume operations as the Cinder internal tenant.
  833. # (string value)
  834. #cinder_internal_tenant_user_id = <None>
  835.  
  836. # The scheduler host manager class to use (string value)
  837. #scheduler_host_manager = cinder.scheduler.host_manager.HostManager
  838.  
  839. # Maximum number of attempts to schedule an volume (integer value)
  840. #scheduler_max_attempts = 3
  841.  
  842. # Path or URL to Scality SOFS configuration file (string value)
  843. #scality_sofs_config = <None>
  844.  
  845. # Base dir where Scality SOFS shall be mounted (string value)
  846. #scality_sofs_mount_point = $state_path/scality
  847.  
  848. # Path from Scality SOFS root to volume dir (string value)
  849. #scality_sofs_volume_dir = cinder/volumes
  850.  
  851. # VNX authentication scope type. (string value)
  852. #storage_vnx_authentication_type = global
  853.  
  854. # Directory path that contains the VNX security file. Make sure the security
  855. # file is generated first. (string value)
  856. #storage_vnx_security_file_dir = <None>
  857.  
  858. # Naviseccli Path. (string value)
  859. #naviseccli_path =
  860.  
  861. # Comma-separated list of storage pool names to be used. (string value)
  862. # Deprecated group/name - [DEFAULT]/storage_vnx_pool_name
  863. #storage_vnx_pool_names = <None>
  864.  
  865. # VNX secondary SP IP Address. (string value)
  866. #san_secondary_ip = <None>
  867.  
  868. # Default timeout for CLI operations in minutes. For example, LUN migration is
  869. # a typical long running operation, which depends on the LUN size and the load
  870. # of the array. An upper bound in the specific deployment can be set to avoid
  871. # unnecessary long wait. By default, it is 365 days long. (integer value)
  872. #default_timeout = 525600
  873.  
  874. # Default max number of LUNs in a storage group. By default, the value is 255.
  875. # (integer value)
  876. #max_luns_per_storage_group = 255
  877.  
  878. # To destroy storage group when the last LUN is removed from it. By default,
  879. # the value is False. (boolean value)
  880. #destroy_empty_storage_group = false
  881.  
  882. # Mapping between hostname and its iSCSI initiator IP addresses. (string value)
  883. #iscsi_initiators =
  884.  
  885. # Comma separated iSCSI or FC ports to be used in Nova or Cinder. (string
  886. # value)
  887. #io_port_list = *
  888.  
  889. # Automatically register initiators. By default, the value is False. (boolean
  890. # value)
  891. #initiator_auto_registration = false
  892.  
  893. # Automatically deregister initiators after the related storage group is
  894. # destroyed. By default, the value is False. (boolean value)
  895. #initiator_auto_deregistration = false
  896.  
  897. # Report free_capacity_gb as 0 when the limit to maximum number of pool LUNs is
  898. # reached. By default, the value is False. (boolean value)
  899. #check_max_pool_luns_threshold = false
  900.  
  901. # Delete a LUN even if it is in Storage Groups. (boolean value)
  902. #force_delete_lun_in_storagegroup = false
  903.  
  904. # Force LUN creation even if the full threshold of pool is reached. (boolean
  905. # value)
  906. #ignore_pool_full_threshold = false
  907.  
  908. # IP address for connecting to VMware ESX/vCenter server. (string value)
  909. #vmware_host_ip = <None>
  910.  
  911. # Username for authenticating with VMware ESX/vCenter server. (string value)
  912. #vmware_host_username = <None>
  913.  
  914. # Password for authenticating with VMware ESX/vCenter server. (string value)
  915. #vmware_host_password = <None>
  916.  
  917. # Optional VIM service WSDL Location e.g http://<server>/vimService.wsdl.
  918. # Optional over-ride to default location for bug work-arounds. (string value)
  919. #vmware_wsdl_location = <None>
  920.  
  921. # Number of times VMware ESX/vCenter server API must be retried upon connection
  922. # related issues. (integer value)
  923. #vmware_api_retry_count = 10
  924.  
  925. # The interval (in seconds) for polling remote tasks invoked on VMware
  926. # ESX/vCenter server. (floating point value)
  927. #vmware_task_poll_interval = 0.5
  928.  
  929. # Name of the vCenter inventory folder that will contain Cinder volumes. This
  930. # folder will be created under "OpenStack/<project_folder>", where
  931. # project_folder is of format "Project (<volume_project_id>)". (string value)
  932. #vmware_volume_folder = Volumes
  933.  
  934. # Timeout in seconds for VMDK volume transfer between Cinder and Glance.
  935. # (integer value)
  936. #vmware_image_transfer_timeout_secs = 7200
  937.  
  938. # Max number of objects to be retrieved per batch. Query results will be
  939. # obtained in batches from the server and not in one shot. Server may still
  940. # limit the count to something less than the configured value. (integer value)
  941. #vmware_max_objects_retrieval = 100
  942.  
  943. # Optional string specifying the VMware vCenter server version. The driver
  944. # attempts to retrieve the version from VMware vCenter server. Set this
  945. # configuration only if you want to override the vCenter server version.
  946. # (string value)
  947. #vmware_host_version = <None>
  948.  
  949. # Directory where virtual disks are stored during volume backup and restore.
  950. # (string value)
  951. #vmware_tmp_dir = /tmp
  952.  
  953. # CA bundle file to use in verifying the vCenter server certificate. (string
  954. # value)
  955. #vmware_ca_file = <None>
  956.  
  957. # If true, the vCenter server certificate is not verified. If false, then the
  958. # default CA truststore is used for verification. This option is ignored if
  959. # "vmware_ca_file" is set. (boolean value)
  960. #vmware_insecure = false
  961.  
  962. # Name of a vCenter compute cluster where volumes should be created. (multi
  963. # valued)
  964. #vmware_cluster_name =
  965.  
  966. # Pool or Vdisk name to use for volume creation. (string value)
  967. #lenovo_backend_name = A
  968.  
  969. # linear (for VDisk) or virtual (for Pool). (string value)
  970. # Allowed values: linear, virtual
  971. #lenovo_backend_type = virtual
  972.  
  973. # Lenovo api interface protocol. (string value)
  974. # Allowed values: http, https
  975. #lenovo_api_protocol = https
  976.  
  977. # Whether to verify Lenovo array SSL certificate. (boolean value)
  978. #lenovo_verify_certificate = false
  979.  
  980. # Lenovo array SSL certificate path. (string value)
  981. #lenovo_verify_certificate_path = <None>
  982.  
  983. # List of comma-separated target iSCSI IP addresses. (list value)
  984. #lenovo_iscsi_ips =
  985.  
  986. # The maximum size in bytes of the files used to hold backups. If the volume
  987. # being backed up exceeds this size, then it will be backed up into multiple
  988. # files.backup_file_size must be a multiple of backup_sha_block_size_bytes.
  989. # (integer value)
  990. #backup_file_size = 1999994880
  991.  
  992. # The size in bytes that changes are tracked for incremental backups.
  993. # backup_file_size has to be multiple of backup_sha_block_size_bytes. (integer
  994. # value)
  995. #backup_sha_block_size_bytes = 32768
  996.  
  997. # Enable or Disable the timer to send the periodic progress notifications to
  998. # Ceilometer when backing up the volume to the backend storage. The default
  999. # value is True to enable the timer. (boolean value)
  1000. #backup_enable_progress_timer = true
  1001.  
  1002. # Path specifying where to store backups. (string value)
  1003. #backup_posix_path = $state_path/backup
  1004.  
  1005. # Custom directory to use for backups. (string value)
  1006. #backup_container = <None>
  1007.  
  1008. # REST server port. (string value)
  1009. #sio_rest_server_port = 443
  1010.  
  1011. # Whether to verify server certificate. (boolean value)
  1012. #sio_verify_server_certificate = false
  1013.  
  1014. # Server certificate path. (string value)
  1015. #sio_server_certificate_path = <None>
  1016.  
  1017. # Whether to round volume capacity. (boolean value)
  1018. #sio_round_volume_capacity = true
  1019.  
  1020. # Whether to allow force delete. (boolean value)
  1021. #sio_force_delete = false
  1022.  
  1023. # Whether to unmap volume before deletion. (boolean value)
  1024. #sio_unmap_volume_before_deletion = false
  1025.  
  1026. # Protection domain id. (string value)
  1027. #sio_protection_domain_id = <None>
  1028.  
  1029. # Protection domain name. (string value)
  1030. #sio_protection_domain_name = <None>
  1031.  
  1032. # Storage pools. (string value)
  1033. #sio_storage_pools = <None>
  1034.  
  1035. # Storage pool name. (string value)
  1036. #sio_storage_pool_name = <None>
  1037.  
  1038. # Storage pool id. (string value)
  1039. #sio_storage_pool_id = <None>
  1040.  
  1041. # Group name to use for creating volumes. Defaults to "group-0". (string value)
  1042. #eqlx_group_name = group-0
  1043.  
  1044. # Timeout for the Group Manager cli command execution. Default is 30. Note that
  1045. # this option is deprecated in favour of "ssh_conn_timeout" as specified in
  1046. # cinder/volume/drivers/san/san.py and will be removed in M release. (integer
  1047. # value)
  1048. #eqlx_cli_timeout = 30
  1049.  
  1050. # Maximum retry count for reconnection. Default is 5. (integer value)
  1051. #eqlx_cli_max_retries = 5
  1052.  
  1053. # Use CHAP authentication for targets. Note that this option is deprecated in
  1054. # favour of "use_chap_auth" as specified in cinder/volume/driver.py and will be
  1055. # removed in next release. (boolean value)
  1056. #eqlx_use_chap = false
  1057.  
  1058. # Existing CHAP account name. Note that this option is deprecated in favour of
  1059. # "chap_username" as specified in cinder/volume/driver.py and will be removed
  1060. # in next release. (string value)
  1061. #eqlx_chap_login = admin
  1062.  
  1063. # Password for specified CHAP account name. Note that this option is deprecated
  1064. # in favour of "chap_password" as specified in cinder/volume/driver.py and will
  1065. # be removed in the next release (string value)
  1066. #eqlx_chap_password = password
  1067.  
  1068. # Pool in which volumes will be created. Defaults to "default". (string value)
  1069. #eqlx_pool = default
  1070.  
  1071. # The number of characters in the salt. (integer value)
  1072. #volume_transfer_salt_length = 8
  1073.  
  1074. # The number of characters in the autogenerated auth key. (integer value)
  1075. #volume_transfer_key_length = 16
  1076.  
  1077. # Services to be added to the available pool on create (boolean value)
  1078. #enable_new_services = true
  1079.  
  1080. # Template string to be used to generate volume names (string value)
  1081. #volume_name_template = volume-%s
  1082.  
  1083. # Template string to be used to generate snapshot names (string value)
  1084. #snapshot_name_template = snapshot-%s
  1085.  
  1086. # Template string to be used to generate backup names (string value)
  1087. #backup_name_template = backup-%s
  1088. backup_name_template = backup-%s
  1089.  
  1090. # Multiplier used for weighing volume number. Negative numbers mean to spread
  1091. # vs stack. (floating point value)
  1092. #volume_number_multiplier = -1.0
  1093.  
  1094. # Default storage pool for volumes. (integer value)
  1095. #ise_storage_pool = 1
  1096.  
  1097. # Raid level for ISE volumes. (integer value)
  1098. #ise_raid = 1
  1099.  
  1100. # Number of retries (per port) when establishing connection to ISE management
  1101. # port. (integer value)
  1102. #ise_connection_retries = 5
  1103.  
  1104. # Interval (secs) between retries. (integer value)
  1105. #ise_retry_interval = 1
  1106.  
  1107. # Number on retries to get completion status after issuing a command to ISE.
  1108. # (integer value)
  1109. #ise_completion_retries = 30
  1110.  
  1111. # Storage pool name. (string value)
  1112. #zfssa_pool = <None>
  1113.  
  1114. # Project name. (string value)
  1115. #zfssa_project = <None>
  1116.  
  1117. # Block size. (string value)
  1118. # Allowed values: 512, 1k, 2k, 4k, 8k, 16k, 32k, 64k, 128k
  1119. #zfssa_lun_volblocksize = 8k
  1120.  
  1121. # Flag to enable sparse (thin-provisioned): True, False. (boolean value)
  1122. #zfssa_lun_sparse = false
  1123.  
  1124. # Data compression. (string value)
  1125. # Allowed values: off, lzjb, gzip-2, gzip, gzip-9
  1126. #zfssa_lun_compression = off
  1127.  
  1128. # Synchronous write bias. (string value)
  1129. # Allowed values: latency, throughput
  1130. #zfssa_lun_logbias = latency
  1131.  
  1132. # iSCSI initiator group. (string value)
  1133. #zfssa_initiator_group =
  1134.  
  1135. # iSCSI initiator IQNs. (comma separated) (string value)
  1136. #zfssa_initiator =
  1137.  
  1138. # iSCSI initiator CHAP user (name). (string value)
  1139. #zfssa_initiator_user =
  1140.  
  1141. # Secret of the iSCSI initiator CHAP user. (string value)
  1142. #zfssa_initiator_password =
  1143.  
  1144. # iSCSI initiators configuration. (string value)
  1145. #zfssa_initiator_config =
  1146.  
  1147. # iSCSI target group name. (string value)
  1148. #zfssa_target_group = tgt-grp
  1149.  
  1150. # iSCSI target CHAP user (name). (string value)
  1151. #zfssa_target_user =
  1152.  
  1153. # Secret of the iSCSI target CHAP user. (string value)
  1154. #zfssa_target_password =
  1155.  
  1156. # iSCSI target portal (Data-IP:Port, w.x.y.z:3260). (string value)
  1157. #zfssa_target_portal = <None>
  1158.  
  1159. # Network interfaces of iSCSI targets. (comma separated) (string value)
  1160. #zfssa_target_interfaces = <None>
  1161.  
  1162. # REST connection timeout. (seconds) (integer value)
  1163. #zfssa_rest_timeout = <None>
  1164.  
  1165. # IP address used for replication data. (maybe the same as data ip) (string
  1166. # value)
  1167. #zfssa_replication_ip =
  1168.  
  1169. # Flag to enable local caching: True, False. (boolean value)
  1170. #zfssa_enable_local_cache = true
  1171.  
  1172. # Name of ZFSSA project where cache volumes are stored. (string value)
  1173. #zfssa_cache_project = os-cinder-cache
  1174.  
  1175. # Sets the value of TCP_KEEPALIVE (True/False) for each server socket. (boolean
  1176. # value)
  1177. #tcp_keepalive = true
  1178.  
  1179. # Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not
  1180. # supported on OS X. (integer value)
  1181. #tcp_keepidle = 600
  1182.  
  1183. # Sets the value of TCP_KEEPINTVL in seconds for each server socket. Not
  1184. # supported on OS X. (integer value)
  1185. #tcp_keepalive_interval = <None>
  1186.  
  1187. # Sets the value of TCP_KEEPCNT for each server socket. Not supported on OS X.
  1188. # (integer value)
  1189. #tcp_keepalive_count = <None>
  1190.  
  1191. # CA certificate file to use to verify connecting clients (string value)
  1192. #ssl_ca_file = <None>
  1193.  
  1194. # Certificate file to use when starting the server securely (string value)
  1195. #ssl_cert_file = <None>
  1196.  
  1197. # Private key file to use when starting the server securely (string value)
  1198. #ssl_key_file = <None>
  1199.  
  1200. # Maximum line size of message headers to be accepted. max_header_line may need
  1201. # to be increased when using large tokens (typically those generated by the
  1202. # Keystone v3 API with big service catalogs). (integer value)
  1203. #max_header_line = 16384
  1204.  
  1205. # Timeout for client connections' socket operations. If an incoming connection
  1206. # is idle for this number of seconds it will be closed. A value of '0' means
  1207. # wait forever. (integer value)
  1208. #client_socket_timeout = 900
  1209.  
  1210. # If False, closes the client socket connection explicitly. Setting it to True
  1211. # to maintain backward compatibility. Recommended setting is set it to False.
  1212. # (boolean value)
  1213. #wsgi_keep_alive = true
  1214.  
  1215. # Number of times to attempt to run flakey shell commands (integer value)
  1216. #num_shell_tries = 3
  1217.  
  1218. # The percentage of backend capacity is reserved (integer value)
  1219. # Maximum value: 100
  1220. #reserved_percentage = 0
  1221.  
  1222. # Prefix for iSCSI volumes (string value)
  1223. #iscsi_target_prefix = iqn.2010-10.org.openstack:
  1224.  
  1225. # The IP address that the iSCSI daemon is listening on (string value)
  1226. #iscsi_ip_address = $my_ip
  1227.  
  1228. # The list of secondary IP addresses of the iSCSI daemon (list value)
  1229. #iscsi_secondary_ip_addresses =
  1230.  
  1231. # The port that the iSCSI daemon is listening on (integer value)
  1232. # Minimum value: 1
  1233. # Maximum value: 65535
  1234. #iscsi_port = 3260
  1235.  
  1236. # The maximum number of times to rescan targets to find volume (integer value)
  1237. #num_volume_device_scan_tries = 3
  1238.  
  1239. # The backend name for a given driver implementation (string value)
  1240. #volume_backend_name = <None>
  1241.  
  1242. # Do we attach/detach volumes in cinder using multipath for volume to image and
  1243. # image to volume transfers? (boolean value)
  1244. #use_multipath_for_image_xfer = false
  1245.  
  1246. # If this is set to True, attachment of volumes for image transfer will be
  1247. # aborted when multipathd is not running. Otherwise, it will fallback to single
  1248. # path. (boolean value)
  1249. #enforce_multipath_for_image_xfer = false
  1250.  
  1251. # Method used to wipe old volumes (string value)
  1252. # Allowed values: none, zero, shred
  1253. #volume_clear = zero
  1254.  
  1255. # Size in MiB to wipe at start of old volumes. 0 => all (integer value)
  1256. #volume_clear_size = 0
  1257.  
  1258. # The flag to pass to ionice to alter the i/o priority of the process used to
  1259. # zero a volume after deletion, for example "-c3" for idle only priority.
  1260. # (string value)
  1261. #volume_clear_ionice = <None>
  1262.  
  1263. # iSCSI target user-land tool to use. tgtadm is default, use lioadm for LIO
  1264. # iSCSI support, scstadmin for SCST target support, iseradm for the ISER
  1265. # protocol, ietadm for iSCSI Enterprise Target, iscsictl for Chelsio iSCSI
  1266. # Target or fake for testing. (string value)
  1267. # Allowed values: tgtadm, lioadm, scstadmin, iseradm, iscsictl, ietadm, fake
  1268. #iscsi_helper = tgtadm
  1269.  
  1270. # Volume configuration file storage directory (string value)
  1271. #volumes_dir = $state_path/volumes
  1272.  
  1273. # IET configuration file (string value)
  1274. #iet_conf = /etc/iet/ietd.conf
  1275.  
  1276. # Chiscsi (CXT) global defaults configuration file (string value)
  1277. #chiscsi_conf = /etc/chelsio-iscsi/chiscsi.conf
  1278.  
  1279. # Sets the behavior of the iSCSI target to either perform blockio or fileio
  1280. # optionally, auto can be set and Cinder will autodetect type of backing device
  1281. # (string value)
  1282. # Allowed values: blockio, fileio, auto
  1283. #iscsi_iotype = fileio
  1284.  
  1285. # The default block size used when copying/clearing volumes (string value)
  1286. #volume_dd_blocksize = 1M
  1287.  
  1288. # The blkio cgroup name to be used to limit bandwidth of volume copy (string
  1289. # value)
  1290. #volume_copy_blkio_cgroup_name = cinder-volume-copy
  1291.  
  1292. # The upper limit of bandwidth of volume copy. 0 => unlimited (integer value)
  1293. #volume_copy_bps_limit = 0
  1294.  
  1295. # Sets the behavior of the iSCSI target to either perform write-back(on) or
  1296. # write-through(off). This parameter is valid if iscsi_helper is set to tgtadm
  1297. # or iseradm. (string value)
  1298. # Allowed values: on, off
  1299. #iscsi_write_cache = on
  1300.  
  1301. # Sets the target-specific flags for the iSCSI target. Only used for tgtadm to
  1302. # specify backing device flags using bsoflags option. The specified string is
  1303. # passed as is to the underlying tool. (string value)
  1304. #iscsi_target_flags =
  1305.  
  1306. # Determines the iSCSI protocol for new iSCSI volumes, created with tgtadm or
  1307. # lioadm target helpers. In order to enable RDMA, this parameter should be set
  1308. # with the value "iser". The supported iSCSI protocol values are "iscsi" and
  1309. # "iser". (string value)
  1310. # Allowed values: iscsi, iser
  1311. #iscsi_protocol = iscsi
  1312.  
  1313. # The path to the client certificate key for verification, if the driver
  1314. # supports it. (string value)
  1315. #driver_client_cert_key = <None>
  1316.  
  1317. # The path to the client certificate for verification, if the driver supports
  1318. # it. (string value)
  1319. #driver_client_cert = <None>
  1320.  
  1321. # Tell driver to use SSL for connection to backend storage if the driver
  1322. # supports it. (boolean value)
  1323. #driver_use_ssl = false
  1324.  
  1325. # Float representation of the over subscription ratio when thin provisioning is
  1326. # involved. Default ratio is 20.0, meaning provisioned capacity can be 20 times
  1327. # of the total physical capacity. If the ratio is 10.5, it means provisioned
  1328. # capacity can be 10.5 times of the total physical capacity. A ratio of 1.0
  1329. # means provisioned capacity cannot exceed the total physical capacity. A ratio
  1330. # lower than 1.0 will be ignored and the default value will be used instead.
  1331. # (floating point value)
  1332. #max_over_subscription_ratio = 20.0
  1333.  
  1334. # Certain ISCSI targets have predefined target names, SCST target driver uses
  1335. # this name. (string value)
  1336. #scst_target_iqn_name = <None>
  1337.  
  1338. # SCST target implementation can choose from multiple SCST target drivers.
  1339. # (string value)
  1340. #scst_target_driver = iscsi
  1341.  
  1342. # Option to enable/disable CHAP authentication for targets. (boolean value)
  1343. # Deprecated group/name - [DEFAULT]/eqlx_use_chap
  1344. #use_chap_auth = false
  1345.  
  1346. # CHAP user name. (string value)
  1347. # Deprecated group/name - [DEFAULT]/eqlx_chap_login
  1348. #chap_username =
  1349.  
  1350. # Password for specified CHAP account name. (string value)
  1351. # Deprecated group/name - [DEFAULT]/eqlx_chap_password
  1352. #chap_password =
  1353.  
  1354. # Namespace for driver private data values to be saved in. (string value)
  1355. #driver_data_namespace = <None>
  1356.  
  1357. # String representation for an equation that will be used to filter hosts. Only
  1358. # used when the driver filter is set to be used by the Cinder scheduler.
  1359. # (string value)
  1360. #filter_function = <None>
  1361.  
  1362. # String representation for an equation that will be used to determine the
  1363. # goodness of a host. Only used when using the goodness weigher is set to be
  1364. # used by the Cinder scheduler. (string value)
  1365. #goodness_function = <None>
  1366.  
  1367. # If set to True the http client will validate the SSL certificate of the
  1368. # backend endpoint. (boolean value)
  1369. #driver_ssl_cert_verify = false
  1370.  
  1371. # List of options that control which trace info is written to the DEBUG log
  1372. # level to assist developers. Valid values are method and api. (list value)
  1373. #trace_flags = <None>
  1374.  
  1375. # There are two types of target configurations managed (replicate to another
  1376. # configured backend) or unmanaged (replicate to a device not managed by
  1377. # Cinder). (boolean value)
  1378. #managed_replication_target = true
  1379.  
  1380. # List of k/v pairs representing a replication target for this backend device.
  1381. # For unmanaged the format is: {'key-1'='val1' 'key-2'='val2'...},{...} and for
  1382. # managed devices its simply a list of valid configured backend_names that the
  1383. # driver supports replicating to: backend-a,bakcend-b... (list value)
  1384. #replication_devices = <None>
  1385.  
  1386. # If set to True, upload-to-image in raw format will create a cloned volume and
  1387. # register its location to the image service, instead of uploading the volume
  1388. # content. The cinder backend and locations support must be enabled in the
  1389. # image service, and glance_api_version must be set to 2. (boolean value)
  1390. #image_upload_use_cinder_backend = false
  1391.  
  1392. # If set to True, the image volume created by upload-to-image will be placed in
  1393. # the internal tenant. Otherwise, the image volume is created in the current
  1394. # context's tenant. (boolean value)
  1395. #image_upload_use_internal_tenant = false
  1396.  
  1397. # Enable the image volume cache for this backend. (boolean value)
  1398. #image_volume_cache_enabled = false
  1399.  
  1400. # Max size of the image volume cache for this backend in GB. 0 => unlimited.
  1401. # (integer value)
  1402. #image_volume_cache_max_size_gb = 0
  1403.  
  1404. # Max number of entries allowed in the image volume cache. 0 => unlimited.
  1405. # (integer value)
  1406. #image_volume_cache_max_count = 0
  1407.  
  1408. # The maximum number of times to rescan iSER targetto find volume (integer
  1409. # value)
  1410. #num_iser_scan_tries = 3
  1411.  
  1412. # Prefix for iSER volumes (string value)
  1413. #iser_target_prefix = iqn.2010-10.org.openstack:
  1414.  
  1415. # The IP address that the iSER daemon is listening on (string value)
  1416. #iser_ip_address = $my_ip
  1417.  
  1418. # The port that the iSER daemon is listening on (integer value)
  1419. # Minimum value: 1
  1420. # Maximum value: 65535
  1421. #iser_port = 3260
  1422.  
  1423. # The name of the iSER target user-land tool to use (string value)
  1424. #iser_helper = tgtadm
  1425.  
  1426. # Public url to use for versions endpoint. The default is None, which will use
  1427. # the request's host_url attribute to populate the URL base. If Cinder is
  1428. # operating behind a proxy, you will want to change this to represent the
  1429. # proxy's URL. (string value)
  1430. #public_endpoint = <None>
  1431.  
  1432. # Nimble Controller pool name (string value)
  1433. #nimble_pool_name = default
  1434.  
  1435. # Nimble Subnet Label (string value)
  1436. #nimble_subnet_label = *
  1437.  
  1438. # Path to store VHD backed volumes (string value)
  1439. #windows_iscsi_lun_path = C:\iSCSIVirtualDisks
  1440.  
  1441. # Pool or Vdisk name to use for volume creation. (string value)
  1442. #hpmsa_backend_name = A
  1443.  
  1444. # linear (for Vdisk) or virtual (for Pool). (string value)
  1445. # Allowed values: linear, virtual
  1446. #hpmsa_backend_type = virtual
  1447.  
  1448. # HPMSA API interface protocol. (string value)
  1449. # Allowed values: http, https
  1450. #hpmsa_api_protocol = https
  1451.  
  1452. # Whether to verify HPMSA array SSL certificate. (boolean value)
  1453. #hpmsa_verify_certificate = false
  1454.  
  1455. # HPMSA array SSL certificate path. (string value)
  1456. #hpmsa_verify_certificate_path = <None>
  1457.  
  1458. # List of comma-separated target iSCSI IP addresses. (list value)
  1459. #hpmsa_iscsi_ips =
  1460.  
  1461. # A list of url schemes that can be downloaded directly via the direct_url.
  1462. # Currently supported schemes: [file]. (list value)
  1463. #allowed_direct_url_schemes =
  1464.  
  1465. # Default core properties of image (list value)
  1466. #glance_core_properties = checksum,container_format,disk_format,image_name,image_id,min_disk,min_ram,name,size
  1467.  
  1468. # Name for the VG that will contain exported volumes (string value)
  1469. #volume_group = cinder-volumes
  1470.  
  1471. # If >0, create LVs with multiple mirrors. Note that this requires lvm_mirrors
  1472. # + 2 PVs with available space (integer value)
  1473. #lvm_mirrors = 0
  1474.  
  1475. # Type of LVM volumes to deploy; (default, thin, or auto). Auto defaults to
  1476. # thin if thin is supported. (string value)
  1477. # Allowed values: default, thin, auto
  1478. #lvm_type = default
  1479.  
  1480. # LVM conf file to use for the LVM driver in Cinder; this setting is ignored if
  1481. # the specified file does not exist (You can also specify 'None' to not use a
  1482. # conf file even if one exists). (string value)
  1483. #lvm_conf_file = /etc/cinder/lvm.conf
  1484.  
  1485. # use this file for cinder emc plugin config data (string value)
  1486. #cinder_emc_config_file = /etc/cinder/cinder_emc_config.xml
  1487.  
  1488. # IP address or Hostname of NAS system. (string value)
  1489. #nas_ip =
  1490.  
  1491. # User name to connect to NAS system. (string value)
  1492. #nas_login = admin
  1493.  
  1494. # Password to connect to NAS system. (string value)
  1495. #nas_password =
  1496.  
  1497. # SSH port to use to connect to NAS system. (integer value)
  1498. # Minimum value: 1
  1499. # Maximum value: 65535
  1500. #nas_ssh_port = 22
  1501.  
  1502. # Filename of private key to use for SSH authentication. (string value)
  1503. #nas_private_key =
  1504.  
  1505. # Allow network-attached storage systems to operate in a secure environment
  1506. # where root level access is not permitted. If set to False, access is as the
  1507. # root user and insecure. If set to True, access is not as root. If set to
  1508. # auto, a check is done to determine if this is a new installation: True is
  1509. # used if so, otherwise False. Default is auto. (string value)
  1510. #nas_secure_file_operations = auto
  1511.  
  1512. # Set more secure file permissions on network-attached storage volume files to
  1513. # restrict broad other/world access. If set to False, volumes are created with
  1514. # open permissions. If set to True, volumes are created with permissions for
  1515. # the cinder user and group (660). If set to auto, a check is done to determine
  1516. # if this is a new installation: True is used if so, otherwise False. Default
  1517. # is auto. (string value)
  1518. #nas_secure_file_permissions = auto
  1519.  
  1520. # Path to the share to use for storing Cinder volumes. For example:
  1521. # "/srv/export1" for an NFS server export available at 10.0.5.10:/srv/export1 .
  1522. # (string value)
  1523. #nas_share_path =
  1524.  
  1525. # Options used to mount the storage backend file system where Cinder volumes
  1526. # are stored. (string value)
  1527. #nas_mount_options = <None>
  1528.  
  1529. # Provisioning type that will be used when creating volumes. (string value)
  1530. # Allowed values: thin, thick
  1531. # Deprecated group/name - [DEFAULT]/glusterfs_sparsed_volumes
  1532. # Deprecated group/name - [DEFAULT]/glusterfs_qcow2_volumes
  1533. #nas_volume_prov_type = thin
  1534.  
  1535. # IP address or hostname of mg-a (string value)
  1536. #gateway_mga = <None>
  1537.  
  1538. # IP address or hostname of mg-b (string value)
  1539. #gateway_mgb = <None>
  1540.  
  1541. # Use igroups to manage targets and initiators (boolean value)
  1542. #use_igroups = false
  1543.  
  1544. # Global backend request timeout, in seconds (integer value)
  1545. #request_timeout = 300
  1546.  
  1547. # Comma-separated list of REST servers IP to connect to. (eg
  1548. # http://IP1/,http://IP2:81/path (string value)
  1549. #srb_base_urls = <None>
  1550.  
  1551. # XMS cluster id in multi-cluster environment (string value)
  1552. #xtremio_cluster_name =
  1553.  
  1554. # Number of retries in case array is busy (integer value)
  1555. #xtremio_array_busy_retry_count = 5
  1556.  
  1557. # Interval between retries in case array is busy (integer value)
  1558. #xtremio_array_busy_retry_interval = 5
  1559.  
  1560. # Serial number of storage system (string value)
  1561. #hitachi_serial_number = <None>
  1562.  
  1563. # Name of an array unit (string value)
  1564. #hitachi_unit_name = <None>
  1565.  
  1566. # Pool ID of storage system (integer value)
  1567. #hitachi_pool_id = <None>
  1568.  
  1569. # Thin pool ID of storage system (integer value)
  1570. #hitachi_thin_pool_id = <None>
  1571.  
  1572. # Range of logical device of storage system (string value)
  1573. #hitachi_ldev_range = <None>
  1574.  
  1575. # Default copy method of storage system (string value)
  1576. #hitachi_default_copy_method = FULL
  1577.  
  1578. # Copy speed of storage system (integer value)
  1579. #hitachi_copy_speed = 3
  1580.  
  1581. # Interval to check copy (integer value)
  1582. #hitachi_copy_check_interval = 3
  1583.  
  1584. # Interval to check copy asynchronously (integer value)
  1585. #hitachi_async_copy_check_interval = 10
  1586.  
  1587. # Control port names for HostGroup or iSCSI Target (string value)
  1588. #hitachi_target_ports = <None>
  1589.  
  1590. # Range of group number (string value)
  1591. #hitachi_group_range = <None>
  1592.  
  1593. # Request for creating HostGroup or iSCSI Target (boolean value)
  1594. #hitachi_group_request = false
  1595.  
  1596. # Infortrend raid pool name list. It is separated with comma. (string value)
  1597. #infortrend_pools_name =
  1598.  
  1599. # The Infortrend CLI absolute path. By default, it is at
  1600. # /opt/bin/Infortrend/raidcmd_ESDS10.jar (string value)
  1601. #infortrend_cli_path = /opt/bin/Infortrend/raidcmd_ESDS10.jar
  1602.  
  1603. # Maximum retry time for cli. Default is 5. (integer value)
  1604. #infortrend_cli_max_retries = 5
  1605.  
  1606. # Default timeout for CLI copy operations in minutes. Support: migrate volume,
  1607. # create cloned volume and create volume from snapshot. By Default, it is 30
  1608. # minutes. (integer value)
  1609. #infortrend_cli_timeout = 30
  1610.  
  1611. # Infortrend raid channel ID list on Slot A for OpenStack usage. It is
  1612. # separated with comma. By default, it is the channel 0~7. (string value)
  1613. #infortrend_slots_a_channels_id = 0,1,2,3,4,5,6,7
  1614.  
  1615. # Infortrend raid channel ID list on Slot B for OpenStack usage. It is
  1616. # separated with comma. By default, it is the channel 0~7. (string value)
  1617. #infortrend_slots_b_channels_id = 0,1,2,3,4,5,6,7
  1618.  
  1619. # Let the volume use specific provisioning. By default, it is the full
  1620. # provisioning. The supported options are full or thin. (string value)
  1621. #infortrend_provisioning = full
  1622.  
  1623. # Let the volume use specific tiering level. By default, it is the level 0. The
  1624. # supported levels are 0,2,3,4. (string value)
  1625. #infortrend_tiering = 0
  1626.  
  1627. # Configuration file for HDS iSCSI cinder plugin (string value)
  1628. #hds_hnas_iscsi_config_file = /opt/hds/hnas/cinder_iscsi_conf.xml
  1629.  
  1630. # The name of ceph cluster (string value)
  1631. #rbd_cluster_name = ceph
  1632.  
  1633. # The RADOS pool where rbd volumes are stored (string value)
  1634. #rbd_pool = rbd
  1635.  
  1636. # The RADOS client name for accessing rbd volumes - only set when using cephx
  1637. # authentication (string value)
  1638. #rbd_user = <None>
  1639.  
  1640. # Path to the ceph configuration file (string value)
  1641. #rbd_ceph_conf =
  1642.  
  1643. # Flatten volumes created from snapshots to remove dependency from volume to
  1644. # snapshot (boolean value)
  1645. #rbd_flatten_volume_from_snapshot = false
  1646.  
  1647. # The libvirt uuid of the secret for the rbd_user volumes (string value)
  1648. #rbd_secret_uuid = <None>
  1649.  
  1650. # Directory where temporary image files are stored when the volume driver does
  1651. # not write them directly to the volume. Warning: this option is now
  1652. # deprecated, please use image_conversion_dir instead. (string value)
  1653. #volume_tmp_dir = <None>
  1654.  
  1655. # Maximum number of nested volume clones that are taken before a flatten
  1656. # occurs. Set to 0 to disable cloning. (integer value)
  1657. #rbd_max_clone_depth = 5
  1658.  
  1659. # Volumes will be chunked into objects of this size (in megabytes). (integer
  1660. # value)
  1661. #rbd_store_chunk_size = 4
  1662.  
  1663. # Timeout value (in seconds) used when connecting to ceph cluster. If value <
  1664. # 0, no timeout is set and default librados value is used. (integer value)
  1665. #rados_connect_timeout = -1
  1666.  
  1667. # Number of retries if connection to ceph cluster failed. (integer value)
  1668. #rados_connection_retries = 3
  1669.  
  1670. # Interval value (in seconds) between connection retries to ceph cluster.
  1671. # (integer value)
  1672. #rados_connection_interval = 5
  1673.  
  1674. # The hostname (or IP address) for the storage system (string value)
  1675. #tintri_server_hostname = <None>
  1676.  
  1677. # User name for the storage system (string value)
  1678. #tintri_server_username = <None>
  1679.  
  1680. # Password for the storage system (string value)
  1681. #tintri_server_password = <None>
  1682.  
  1683. # API version for the storage system (string value)
  1684. #tintri_api_version = v310
  1685.  
  1686. # Instance numbers for HORCM (string value)
  1687. #hitachi_horcm_numbers = 200,201
  1688.  
  1689. # Username of storage system for HORCM (string value)
  1690. #hitachi_horcm_user = <None>
  1691.  
  1692. # Password of storage system for HORCM (string value)
  1693. #hitachi_horcm_password = <None>
  1694.  
  1695. # Add to HORCM configuration (boolean value)
  1696. #hitachi_horcm_add_conf = true
  1697.  
  1698. # Timeout until a resource lock is released, in seconds. The value must be
  1699. # between 0 and 7200. (integer value)
  1700. #hitachi_horcm_resource_lock_timeout = 600
  1701.  
  1702. # HP LeftHand WSAPI Server Url like https://<LeftHand ip>:8081/lhos (string
  1703. # value)
  1704. #hplefthand_api_url = <None>
  1705.  
  1706. # HP LeftHand Super user username (string value)
  1707. #hplefthand_username = <None>
  1708.  
  1709. # HP LeftHand Super user password (string value)
  1710. #hplefthand_password = <None>
  1711.  
  1712. # HP LeftHand cluster name (string value)
  1713. #hplefthand_clustername = <None>
  1714.  
  1715. # Configure CHAP authentication for iSCSI connections (Default: Disabled)
  1716. # (boolean value)
  1717. #hplefthand_iscsi_chap_enabled = false
  1718.  
  1719. # Enable HTTP debugging to LeftHand (boolean value)
  1720. #hplefthand_debug = false
  1721.  
  1722. # Administrative user account name used to access the storage system or proxy
  1723. # server. (string value)
  1724. #netapp_login = <None>
  1725.  
  1726. # Password for the administrative user account specified in the netapp_login
  1727. # option. (string value)
  1728. #netapp_password = <None>
  1729.  
  1730. # The hostname (or IP address) for the storage system or proxy server. (string
  1731. # value)
  1732. #netapp_server_hostname = <None>
  1733.  
  1734. # The TCP port to use for communication with the storage system or proxy
  1735. # server. If not specified, Data ONTAP drivers will use 80 for HTTP and 443 for
  1736. # HTTPS; E-Series will use 8080 for HTTP and 8443 for HTTPS. (integer value)
  1737. #netapp_server_port = <None>
  1738.  
  1739. # This option is used to specify the path to the E-Series proxy application on
  1740. # a proxy server. The value is combined with the value of the
  1741. # netapp_transport_type, netapp_server_hostname, and netapp_server_port options
  1742. # to create the URL used by the driver to connect to the proxy application.
  1743. # (string value)
  1744. #netapp_webservice_path = /devmgr/v2
  1745.  
  1746. # This option is only utilized when the storage family is configured to
  1747. # eseries. This option is used to restrict provisioning to the specified
  1748. # controllers. Specify the value of this option to be a comma separated list of
  1749. # controller hostnames or IP addresses to be used for provisioning. (string
  1750. # value)
  1751. #netapp_controller_ips = <None>
  1752.  
  1753. # Password for the NetApp E-Series storage array. (string value)
  1754. #netapp_sa_password = <None>
  1755.  
  1756. # This option specifies whether the driver should allow operations that require
  1757. # multiple attachments to a volume. An example would be live migration of
  1758. # servers that have volumes attached. When enabled, this backend is limited to
  1759. # 256 total volumes in order to guarantee volumes can be accessed by more than
  1760. # one host. (boolean value)
  1761. #netapp_enable_multiattach = false
  1762.  
  1763. # The transport protocol used when communicating with the storage system or
  1764. # proxy server. (string value)
  1765. # Allowed values: http, https
  1766. #netapp_transport_type = http
  1767.  
  1768. # This option defines the type of operating system that will access a LUN
  1769. # exported from Data ONTAP; it is assigned to the LUN at the time it is
  1770. # created. (string value)
  1771. #netapp_lun_ostype = <None>
  1772.  
  1773. # This option defines the type of operating system for all initiators that can
  1774. # access a LUN. This information is used when mapping LUNs to individual hosts
  1775. # or groups of hosts. (string value)
  1776. # Deprecated group/name - [DEFAULT]/netapp_eseries_host_type
  1777. #netapp_host_type = <None>
  1778.  
  1779. # This option is used to restrict provisioning to the specified pools. Specify
  1780. # the value of this option to be a regular expression which will be applied to
  1781. # the names of objects from the storage backend which represent pools in
  1782. # Cinder. This option is only utilized when the storage protocol is configured
  1783. # to use iSCSI or FC. (string value)
  1784. # Deprecated group/name - [DEFAULT]/netapp_volume_list
  1785. # Deprecated group/name - [DEFAULT]/netapp_storage_pools
  1786. #netapp_pool_name_search_pattern = (.+)
  1787.  
  1788. # Request for FC Zone creating HostGroup (boolean value)
  1789. #hitachi_zoning_request = false
  1790.  
  1791. # Number of volumes allowed per project (integer value)
  1792. #quota_volumes = 10
  1793.  
  1794. # Number of volume snapshots allowed per project (integer value)
  1795. #quota_snapshots = 10
  1796.  
  1797. # Number of consistencygroups allowed per project (integer value)
  1798. #quota_consistencygroups = 10
  1799.  
  1800. # Total amount of storage, in gigabytes, allowed for volumes and snapshots per
  1801. # project (integer value)
  1802. #quota_gigabytes = 1000
  1803.  
  1804. # Number of volume backups allowed per project (integer value)
  1805. #quota_backups = 10
  1806.  
  1807. # Total amount of storage, in gigabytes, allowed for backups per project
  1808. # (integer value)
  1809. #quota_backup_gigabytes = 1000
  1810.  
  1811. # Number of seconds until a reservation expires (integer value)
  1812. #reservation_expire = 86400
  1813.  
  1814. # Count of reservations until usage is refreshed (integer value)
  1815. #until_refresh = 0
  1816.  
  1817. # Number of seconds between subsequent usage refreshes (integer value)
  1818. #max_age = 0
  1819.  
  1820. # Default driver to use for quota checks (string value)
  1821. #quota_driver = cinder.quota.DbQuotaDriver
  1822.  
  1823. # Enables or disables use of default quota class with default quota. (boolean
  1824. # value)
  1825. #use_default_quota_class = true
  1826.  
  1827. # Max size allowed per volume, in gigabytes (integer value)
  1828. #per_volume_size_limit = -1
  1829.  
  1830. # The configuration file for the Cinder Huawei driver. (string value)
  1831. #cinder_huawei_conf_file = /etc/cinder/cinder_huawei_conf.xml
  1832.  
  1833. # Storage Center System Serial Number (integer value)
  1834. #dell_sc_ssn = 64702
  1835.  
  1836. # Dell API port (integer value)
  1837. # Minimum value: 1
  1838. # Maximum value: 65535
  1839. #dell_sc_api_port = 3033
  1840.  
  1841. # Name of the server folder to use on the Storage Center (string value)
  1842. #dell_sc_server_folder = openstack
  1843.  
  1844. # Name of the volume folder to use on the Storage Center (string value)
  1845. #dell_sc_volume_folder = openstack
  1846.  
  1847. # Enable HTTPS SC certificate verification. (boolean value)
  1848. #dell_sc_verify_cert = false
  1849.  
  1850. # Which filter class names to use for filtering hosts when not specified in the
  1851. # request. (list value)
  1852. #scheduler_default_filters = AvailabilityZoneFilter,CapacityFilter,CapabilitiesFilter
  1853.  
  1854. # Which weigher class names to use for weighing hosts. (list value)
  1855. #scheduler_default_weighers = CapacityWeigher
  1856.  
  1857. # Base dir containing mount point for NFS share. (string value)
  1858. #backup_mount_point_base = $state_path/backup_mount
  1859.  
  1860. # NFS share in hostname:path, ipv4addr:path, or "[ipv6addr]:path" format.
  1861. # (string value)
  1862. #backup_share = <None>
  1863.  
  1864. # Mount options passed to the NFS client. See NFS man page for details. (string
  1865. # value)
  1866. #backup_mount_options = <None>
  1867.  
  1868. # IP address/hostname of Blockbridge API. (string value)
  1869. #blockbridge_api_host = <None>
  1870.  
  1871. # Override HTTPS port to connect to Blockbridge API server. (integer value)
  1872. #blockbridge_api_port = <None>
  1873.  
  1874. # Blockbridge API authentication scheme (token or password) (string value)
  1875. # Allowed values: token, password
  1876. #blockbridge_auth_scheme = token
  1877.  
  1878. # Blockbridge API token (for auth scheme 'token') (string value)
  1879. #blockbridge_auth_token = <None>
  1880.  
  1881. # Blockbridge API user (for auth scheme 'password') (string value)
  1882. #blockbridge_auth_user = <None>
  1883.  
  1884. # Blockbridge API password (for auth scheme 'password') (string value)
  1885. #blockbridge_auth_password = <None>
  1886.  
  1887. # Defines the set of exposed pools and their associated backend query strings
  1888. # (dict value)
  1889. #blockbridge_pools = OpenStack:+openstack
  1890.  
  1891. # Default pool name if unspecified. (string value)
  1892. #blockbridge_default_pool = <None>
  1893.  
  1894. # Data path IP address (string value)
  1895. #zfssa_data_ip = <None>
  1896.  
  1897. # HTTPS port number (string value)
  1898. #zfssa_https_port = 443
  1899.  
  1900. # Options to be passed while mounting share over nfs (string value)
  1901. #zfssa_nfs_mount_options =
  1902.  
  1903. # Storage pool name. (string value)
  1904. #zfssa_nfs_pool =
  1905.  
  1906. # Project name. (string value)
  1907. #zfssa_nfs_project = NFSProject
  1908.  
  1909. # Share name. (string value)
  1910. #zfssa_nfs_share = nfs_share
  1911.  
  1912. # Data compression. (string value)
  1913. # Allowed values: off, lzjb, gzip-2, gzip, gzip-9
  1914. #zfssa_nfs_share_compression = off
  1915.  
  1916. # Synchronous write bias-latency, throughput. (string value)
  1917. # Allowed values: latency, throughput
  1918. #zfssa_nfs_share_logbias = latency
  1919.  
  1920. # REST connection timeout. (seconds) (integer value)
  1921. #zfssa_rest_timeout = <None>
  1922.  
  1923. # Flag to enable local caching: True, False. (boolean value)
  1924. #zfssa_enable_local_cache = true
  1925.  
  1926. # Name of directory inside zfssa_nfs_share where cache volumes are stored.
  1927. # (string value)
  1928. #zfssa_cache_directory = os-cinder-cache
  1929.  
  1930. # Space network name to use for data transfer (string value)
  1931. #hgst_net = Net 1 (IPv4)
  1932.  
  1933. # Comma separated list of Space storage servers:devices. ex:
  1934. # os1_stor:gbd0,os2_stor:gbd0 (string value)
  1935. #hgst_storage_servers = os:gbd0
  1936.  
  1937. # Should spaces be redundantly stored (1/0) (string value)
  1938. #hgst_redundancy = 0
  1939.  
  1940. # User to own created spaces (string value)
  1941. #hgst_space_user = root
  1942.  
  1943. # Group to own created spaces (string value)
  1944. #hgst_space_group = disk
  1945.  
  1946. # UNIX mode for created spaces (string value)
  1947. #hgst_space_mode = 0600
  1948.  
  1949. # Directory used for temporary storage during image conversion (string value)
  1950. #image_conversion_dir = $state_path/conversion
  1951.  
  1952. # Match this value when searching for nova in the service catalog. Format is:
  1953. # separated values of the form: <service_type>:<service_name>:<endpoint_type>
  1954. # (string value)
  1955. #nova_catalog_info = compute:Compute Service:publicURL
  1956. nova_catalog_info = compute:Compute Service:publicURL
  1957.  
  1958. # Same as nova_catalog_info, but for admin endpoint. (string value)
  1959. #nova_catalog_admin_info = compute:Compute Service:adminURL
  1960. nova_catalog_admin_info = compute:Compute Service:adminURL
  1961.  
  1962. # Override service catalog lookup with template for nova endpoint e.g.
  1963. # http://localhost:8774/v2/%(project_id)s (string value)
  1964. #nova_endpoint_template = <None>
  1965.  
  1966. # Same as nova_endpoint_template, but for admin endpoint. (string value)
  1967. #nova_endpoint_admin_template = <None>
  1968.  
  1969. # Region name of this node (string value)
  1970. #os_region_name = <None>
  1971.  
  1972. # Location of ca certificates file to use for nova client requests. (string
  1973. # value)
  1974. #nova_ca_certificates_file = <None>
  1975.  
  1976. # Allow to perform insecure SSL requests to nova (boolean value)
  1977. #nova_api_insecure = false
  1978.  
  1979. # Connect with multipath (FC only).(Default is false.) (boolean value)
  1980. #flashsystem_multipath_enabled = false
  1981.  
  1982. # DPL pool uuid in which DPL volumes are stored. (string value)
  1983. #dpl_pool =
  1984.  
  1985. # DPL port number. (integer value)
  1986. # Minimum value: 1
  1987. # Maximum value: 65535
  1988. #dpl_port = 8357
  1989.  
  1990. # Add CHAP user (boolean value)
  1991. #hitachi_add_chap_user = false
  1992.  
  1993. # iSCSI authentication method (string value)
  1994. #hitachi_auth_method = <None>
  1995.  
  1996. # iSCSI authentication username (string value)
  1997. #hitachi_auth_user = HBSD-CHAP-user
  1998.  
  1999. # iSCSI authentication password (string value)
  2000. #hitachi_auth_password = HBSD-CHAP-password
  2001.  
  2002. # Driver to use for volume creation (string value)
  2003. #volume_driver = cinder.volume.drivers.lvm.LVMVolumeDriver
  2004.  
  2005. # Timeout for creating the volume to migrate to when performing volume
  2006. # migration (seconds) (integer value)
  2007. #migration_create_volume_timeout_secs = 300
  2008.  
  2009. # Offload pending volume delete during volume service startup (boolean value)
  2010. #volume_service_inithost_offload = false
  2011.  
  2012. # FC Zoning mode configured (string value)
  2013. #zoning_mode = none
  2014.  
  2015. # User defined capabilities, a JSON formatted string specifying key/value
  2016. # pairs. The key/value pairs can be used by the CapabilitiesFilter to select
  2017. # between backends when requests specify volume types. For example, specifying
  2018. # a service level or the geographical location of a backend, then creating a
  2019. # volume type to allow the user to select by these different properties.
  2020. # (string value)
  2021. #extra_capabilities = {}
  2022.  
  2023. # Default iSCSI Port ID of FlashSystem. (Default port is 0.) (integer value)
  2024. #flashsystem_iscsi_portid = 0
  2025.  
  2026. # Connection protocol should be FC. (Default is FC.) (string value)
  2027. #flashsystem_connection_protocol = FC
  2028.  
  2029. # Allows vdisk to multi host mapping. (Default is True) (boolean value)
  2030. #flashsystem_multihostmap_enabled = true
  2031.  
  2032. # 3PAR WSAPI Server Url like https://<3par ip>:8080/api/v1 (string value)
  2033. #hp3par_api_url =
  2034.  
  2035. # 3PAR username with the 'edit' role (string value)
  2036. #hp3par_username =
  2037.  
  2038. # 3PAR password for the user specified in hp3par_username (string value)
  2039. #hp3par_password =
  2040.  
  2041. # List of the CPG(s) to use for volume creation (list value)
  2042. #hp3par_cpg = OpenStack
  2043.  
  2044. # The CPG to use for Snapshots for volumes. If empty the userCPG will be used.
  2045. # (string value)
  2046. #hp3par_cpg_snap =
  2047.  
  2048. # The time in hours to retain a snapshot. You can't delete it before this
  2049. # expires. (string value)
  2050. #hp3par_snapshot_retention =
  2051.  
  2052. # The time in hours when a snapshot expires and is deleted. This must be
  2053. # larger than expiration (string value)
  2054. #hp3par_snapshot_expiration =
  2055.  
  2056. # Enable HTTP debugging to 3PAR (boolean value)
  2057. #hp3par_debug = false
  2058.  
  2059. # List of target iSCSI addresses to use. (list value)
  2060. #hp3par_iscsi_ips =
  2061.  
  2062. # Enable CHAP authentication for iSCSI connections. (boolean value)
  2063. #hp3par_iscsi_chap_enabled = false
  2064.  
  2065. # Proxy driver that connects to the IBM Storage Array (string value)
  2066. #xiv_ds8k_proxy = xiv_ds8k_openstack.nova_proxy.XIVDS8KNovaProxy
  2067.  
  2068. # Connection type to the IBM Storage Array (string value)
  2069. # Allowed values: fibre_channel, iscsi
  2070. #xiv_ds8k_connection_type = iscsi
  2071.  
  2072. # CHAP authentication mode, effective only for iscsi (disabled|enabled) (string
  2073. # value)
  2074. # Allowed values: disabled, enabled
  2075. #xiv_chap = disabled
  2076.  
  2077. # List of Management IP addresses (separated by commas) (string value)
  2078. #management_ips =
  2079.  
  2080. # DEPRECATED: This will be removed in the Liberty release. Use san_login and
  2081. # san_password instead. This directly sets the Datera API token. (string value)
  2082. #datera_api_token = <None>
  2083.  
  2084. # Datera API port. (string value)
  2085. #datera_api_port = 7717
  2086.  
  2087. # Datera API version. (string value)
  2088. #datera_api_version = 1
  2089.  
  2090. # Number of replicas to create of an inode. (string value)
  2091. #datera_num_replicas = 3
  2092.  
  2093. # List of all available devices (list value)
  2094. #available_devices =
  2095.  
  2096. # URL to the Quobyte volume e.g., quobyte://<DIR host>/<volume name> (string
  2097. # value)
  2098. #quobyte_volume_url = <None>
  2099.  
  2100. # Path to a Quobyte Client configuration file. (string value)
  2101. #quobyte_client_cfg = <None>
  2102.  
  2103. # Create volumes as sparse files which take no space. If set to False, volume
  2104. # is created as regular file.In such case volume creation takes a lot of time.
  2105. # (boolean value)
  2106. #quobyte_sparsed_volumes = true
  2107.  
  2108. # Create volumes as QCOW2 files rather than raw files. (boolean value)
  2109. #quobyte_qcow2_volumes = true
  2110.  
  2111. # Base dir containing the mount point for the Quobyte volume. (string value)
  2112. #quobyte_mount_point_base = $state_path/mnt
  2113.  
  2114. # File with the list of available vzstorage shares. (string value)
  2115. #vzstorage_shares_config = /etc/cinder/vzstorage_shares
  2116.  
  2117. # Create volumes as sparsed files which take no space rather than regular files
  2118. # when using raw format, in which case volume creation takes lot of time.
  2119. # (boolean value)
  2120. #vzstorage_sparsed_volumes = true
  2121.  
  2122. # Percent of ACTUAL usage of the underlying volume before no new volumes can be
  2123. # allocated to the volume destination. (floating point value)
  2124. #vzstorage_used_ratio = 0.95
  2125.  
  2126. # Base dir containing mount points for vzstorage shares. (string value)
  2127. #vzstorage_mount_point_base = $state_path/mnt
  2128.  
  2129. # Mount options passed to the vzstorage client. See section of the pstorage-
  2130. # mount man page for details. (list value)
  2131. #vzstorage_mount_options = <None>
  2132.  
  2133. # File with the list of available nfs shares (string value)
  2134. #nfs_shares_config = /etc/cinder/nfs_shares
  2135.  
  2136. # Create volumes as sparsed files which take no space.If set to False volume is
  2137. # created as regular file.In such case volume creation takes a lot of time.
  2138. # (boolean value)
  2139. #nfs_sparsed_volumes = true
  2140.  
  2141. # Percent of ACTUAL usage of the underlying volume before no new volumes can be
  2142. # allocated to the volume destination. Note that this option is deprecated in
  2143. # favor of "reserved_percentage" and will be removed in the Mitaka release.
  2144. # (floating point value)
  2145. #nfs_used_ratio = 0.95
  2146.  
  2147. # This will compare the allocated to available space on the volume destination.
  2148. # If the ratio exceeds this number, the destination will no longer be valid.
  2149. # Note that this option is deprecated in favor of "max_oversubscription_ratio"
  2150. # and will be removed in the Mitaka release. (floating point value)
  2151. #nfs_oversub_ratio = 1.0
  2152.  
  2153. # Base dir containing mount points for nfs shares. (string value)
  2154. #nfs_mount_point_base = $state_path/mnt
  2155.  
  2156. # Mount options passed to the nfs client. See section of the nfs man page for
  2157. # details. (string value)
  2158. #nfs_mount_options = <None>
  2159.  
  2160. # The number of attempts to mount nfs shares before raising an error. At least
  2161. # one attempt will be made to mount an nfs share, regardless of the value
  2162. # specified. (integer value)
  2163. #nfs_mount_attempts = 3
  2164.  
  2165. #
  2166. # From oslo.log
  2167. #
  2168.  
  2169. # Print debugging output (set logging level to DEBUG instead of default INFO
  2170. # level). (boolean value)
  2171. #debug = false
  2172. debug = False
  2173.  
  2174. # If set to false, will disable INFO logging level, making WARNING the default.
  2175. # (boolean value)
  2176. # This option is deprecated for removal.
  2177. # Its value may be silently ignored in the future.
  2178. #verbose = true
  2179. verbose = True
  2180.  
  2181. # The name of a logging configuration file. This file is appended to any
  2182. # existing logging configuration files. For details about logging configuration
  2183. # files, see the Python logging module documentation. (string value)
  2184. # Deprecated group/name - [DEFAULT]/log_config
  2185. #log_config_append = <None>
  2186.  
  2187. # DEPRECATED. A logging.Formatter log message format string which may use any
  2188. # of the available logging.LogRecord attributes. This option is deprecated.
  2189. # Please use logging_context_format_string and logging_default_format_string
  2190. # instead. (string value)
  2191. #log_format = <None>
  2192.  
  2193. # Format string for %%(asctime)s in log records. Default: %(default)s . (string
  2194. # value)
  2195. #log_date_format = %Y-%m-%d %H:%M:%S
  2196.  
  2197. # (Optional) Name of log file to output to. If no default is set, logging will
  2198. # go to stdout. (string value)
  2199. # Deprecated group/name - [DEFAULT]/logfile
  2200. #log_file = <None>
  2201.  
  2202. # (Optional) The base directory used for relative --log-file paths. (string
  2203. # value)
  2204. # Deprecated group/name - [DEFAULT]/logdir
  2205. #log_dir = <None>
  2206.  
  2207. # Use syslog for logging. Existing syslog format is DEPRECATED and will be
  2208. # changed later to honor RFC5424. (boolean value)
  2209. #use_syslog = false
  2210.  
  2211. # (Optional) Enables or disables syslog rfc5424 format for logging. If enabled,
  2212. # prefixes the MSG part of the syslog message with APP-NAME (RFC5424). The
  2213. # format without the APP-NAME is deprecated in Kilo, and will be removed in
  2214. # Mitaka, along with this option. (boolean value)
  2215. # This option is deprecated for removal.
  2216. # Its value may be silently ignored in the future.
  2217. #use_syslog_rfc_format = true
  2218.  
  2219. # Syslog facility to receive log lines. (string value)
  2220. #syslog_log_facility = LOG_USER
  2221.  
  2222. # Log output to standard error. (boolean value)
  2223. #use_stderr = true
  2224.  
  2225. # Format string to use for log messages with context. (string value)
  2226. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  2227.  
  2228. # Format string to use for log messages without context. (string value)
  2229. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  2230.  
  2231. # Data to append to log format when level is DEBUG. (string value)
  2232. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  2233.  
  2234. # Prefix each line of exception output with this format. (string value)
  2235. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
  2236.  
  2237. # List of logger=LEVEL pairs. (list value)
  2238. #default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN
  2239.  
  2240. # Enables or disables publication of error events. (boolean value)
  2241. #publish_errors = false
  2242.  
  2243. # The format for an instance that is passed with the log message. (string
  2244. # value)
  2245. #instance_format = "[instance: %(uuid)s] "
  2246.  
  2247. # The format for an instance UUID that is passed with the log message. (string
  2248. # value)
  2249. #instance_uuid_format = "[instance: %(uuid)s] "
  2250.  
  2251. # Enables or disables fatal status of deprecations. (boolean value)
  2252. #fatal_deprecations = false
  2253.  
  2254. #
  2255. # From oslo.messaging
  2256. #
  2257.  
  2258. # Size of RPC connection pool. (integer value)
  2259. # Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
  2260. #rpc_conn_pool_size = 30
  2261.  
  2262. # ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
  2263. # The "host" option should point or resolve to this address. (string value)
  2264. #rpc_zmq_bind_address = *
  2265.  
  2266. # MatchMaker driver. (string value)
  2267. #rpc_zmq_matchmaker = local
  2268.  
  2269. # ZeroMQ receiver listening port. (integer value)
  2270. #rpc_zmq_port = 9501
  2271.  
  2272. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  2273. #rpc_zmq_contexts = 1
  2274.  
  2275. # Maximum number of ingress messages to locally buffer per topic. Default is
  2276. # unlimited. (integer value)
  2277. #rpc_zmq_topic_backlog = <None>
  2278.  
  2279. # Directory for holding IPC sockets. (string value)
  2280. #rpc_zmq_ipc_dir = /var/run/openstack
  2281.  
  2282. # Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
  2283. # "host" option, if running Nova. (string value)
  2284. #rpc_zmq_host = localhost
  2285.  
  2286. # Seconds to wait before a cast expires (TTL). Only supported by impl_zmq.
  2287. # (integer value)
  2288. #rpc_cast_timeout = 30
  2289.  
  2290. # Heartbeat frequency. (integer value)
  2291. #matchmaker_heartbeat_freq = 300
  2292.  
  2293. # Heartbeat time-to-live. (integer value)
  2294. #matchmaker_heartbeat_ttl = 600
  2295.  
  2296. # Size of executor thread pool. (integer value)
  2297. # Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
  2298. #executor_thread_pool_size = 64
  2299.  
  2300. # The Drivers(s) to handle sending notifications. Possible values are
  2301. # messaging, messagingv2, routing, log, test, noop (multi valued)
  2302. #notification_driver =
  2303. notification_driver =messagingv2
  2304.  
  2305. # AMQP topic used for OpenStack notifications. (list value)
  2306. # Deprecated group/name - [rpc_notifier2]/topics
  2307. #notification_topics = notifications
  2308.  
  2309. # Seconds to wait for a response from a call. (integer value)
  2310. #rpc_response_timeout = 60
  2311.  
  2312. # A URL representing the messaging driver to use and its full configuration. If
  2313. # not set, we fall back to the rpc_backend option and driver specific
  2314. # configuration. (string value)
  2315. #transport_url = <None>
  2316.  
  2317. # The messaging driver to use, defaults to rabbit. Other drivers include qpid
  2318. # and zmq. (string value)
  2319. #rpc_backend = rabbit
  2320. rpc_backend = rabbit
  2321.  
  2322. # The default exchange under which topics are scoped. May be overridden by an
  2323. # exchange name specified in the transport_url option. (string value)
  2324. #control_exchange = openstack
  2325. control_exchange = openstack
  2326.  
  2327. #
  2328. # From oslo.messaging
  2329. #
  2330.  
  2331. # Size of RPC connection pool. (integer value)
  2332. # Deprecated group/name - [DEFAULT]/rpc_conn_pool_size
  2333. #rpc_conn_pool_size = 30
  2334.  
  2335. # ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
  2336. # The "host" option should point or resolve to this address. (string value)
  2337. #rpc_zmq_bind_address = *
  2338.  
  2339. # MatchMaker driver. (string value)
  2340. #rpc_zmq_matchmaker = local
  2341.  
  2342. # ZeroMQ receiver listening port. (integer value)
  2343. #rpc_zmq_port = 9501
  2344.  
  2345. # Number of ZeroMQ contexts, defaults to 1. (integer value)
  2346. #rpc_zmq_contexts = 1
  2347.  
  2348. # Maximum number of ingress messages to locally buffer per topic. Default is
  2349. # unlimited. (integer value)
  2350. #rpc_zmq_topic_backlog = <None>
  2351.  
  2352. # Directory for holding IPC sockets. (string value)
  2353. #rpc_zmq_ipc_dir = /var/run/openstack
  2354.  
  2355. # Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
  2356. # "host" option, if running Nova. (string value)
  2357. #rpc_zmq_host = localhost
  2358.  
  2359. # Seconds to wait before a cast expires (TTL). Only supported by impl_zmq.
  2360. # (integer value)
  2361. #rpc_cast_timeout = 30
  2362.  
  2363. # Heartbeat frequency. (integer value)
  2364. #matchmaker_heartbeat_freq = 300
  2365.  
  2366. # Heartbeat time-to-live. (integer value)
  2367. #matchmaker_heartbeat_ttl = 600
  2368.  
  2369. # Size of executor thread pool. (integer value)
  2370. # Deprecated group/name - [DEFAULT]/rpc_thread_pool_size
  2371. #executor_thread_pool_size = 64
  2372.  
  2373. # The Drivers(s) to handle sending notifications. Possible values are
  2374. # messaging, messagingv2, routing, log, test, noop (multi valued)
  2375. #notification_driver =
  2376.  
  2377. # AMQP topic used for OpenStack notifications. (list value)
  2378. # Deprecated group/name - [rpc_notifier2]/topics
  2379. #notification_topics = notifications
  2380.  
  2381. # Seconds to wait for a response from a call. (integer value)
  2382. #rpc_response_timeout = 60
  2383.  
  2384. # A URL representing the messaging driver to use and its full configuration. If
  2385. # not set, we fall back to the rpc_backend option and driver specific
  2386. # configuration. (string value)
  2387. #transport_url = <None>
  2388.  
  2389. # The messaging driver to use, defaults to rabbit. Other drivers include qpid
  2390. # and zmq. (string value)
  2391. #rpc_backend = rabbit
  2392.  
  2393. # The default exchange under which topics are scoped. May be overridden by an
  2394. # exchange name specified in the transport_url option. (string value)
  2395. #control_exchange = openstack
  2396. api_paste_config=/etc/cinder/api-paste.ini
  2397. amqp_durable_queues=False
  2398.  
  2399.  
  2400. [BRCD_FABRIC_EXAMPLE]
  2401.  
  2402. #
  2403. # From cinder
  2404. #
  2405.  
  2406. # Management IP of fabric (string value)
  2407. #fc_fabric_address =
  2408.  
  2409. # Fabric user ID (string value)
  2410. #fc_fabric_user =
  2411.  
  2412. # Password for user (string value)
  2413. #fc_fabric_password =
  2414.  
  2415. # Connecting port (integer value)
  2416. # Minimum value: 1
  2417. # Maximum value: 65535
  2418. #fc_fabric_port = 22
  2419.  
  2420. # overridden zoning policy (string value)
  2421. #zoning_policy = initiator-target
  2422.  
  2423. # overridden zoning activation state (boolean value)
  2424. #zone_activate = true
  2425.  
  2426. # overridden zone name prefix (string value)
  2427. #zone_name_prefix = <None>
  2428.  
  2429. # Principal switch WWN of the fabric (string value)
  2430. #principal_switch_wwn = <None>
  2431.  
  2432.  
  2433. [CISCO_FABRIC_EXAMPLE]
  2434.  
  2435. #
  2436. # From cinder
  2437. #
  2438.  
  2439. # Management IP of fabric (string value)
  2440. #cisco_fc_fabric_address =
  2441.  
  2442. # Fabric user ID (string value)
  2443. #cisco_fc_fabric_user =
  2444.  
  2445. # Password for user (string value)
  2446. #cisco_fc_fabric_password =
  2447.  
  2448. # Connecting port (integer value)
  2449. # Minimum value: 1
  2450. # Maximum value: 65535
  2451. #cisco_fc_fabric_port = 22
  2452.  
  2453. # overridden zoning policy (string value)
  2454. #cisco_zoning_policy = initiator-target
  2455.  
  2456. # overridden zoning activation state (boolean value)
  2457. #cisco_zone_activate = true
  2458.  
  2459. # overridden zone name prefix (string value)
  2460. #cisco_zone_name_prefix = <None>
  2461.  
  2462. # VSAN of the Fabric (string value)
  2463. #cisco_zoning_vsan = <None>
  2464.  
  2465.  
  2466. [cors]
  2467.  
  2468. #
  2469. # From oslo.middleware
  2470. #
  2471.  
  2472. # Indicate whether this resource may be shared with the domain received in the
  2473. # requests "origin" header. (string value)
  2474. #allowed_origin = <None>
  2475.  
  2476. # Indicate that the actual request can include user credentials (boolean value)
  2477. #allow_credentials = true
  2478.  
  2479. # Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
  2480. # Headers. (list value)
  2481. #expose_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  2482.  
  2483. # Maximum cache age of CORS preflight requests. (integer value)
  2484. #max_age = 3600
  2485.  
  2486. # Indicate which methods can be used during the actual request. (list value)
  2487. #allow_methods = GET,POST,PUT,DELETE,OPTIONS
  2488.  
  2489. # Indicate which header field names may be used during the actual request.
  2490. # (list value)
  2491. #allow_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  2492.  
  2493.  
  2494. [cors.subdomain]
  2495.  
  2496. #
  2497. # From oslo.middleware
  2498. #
  2499.  
  2500. # Indicate whether this resource may be shared with the domain received in the
  2501. # requests "origin" header. (string value)
  2502. #allowed_origin = <None>
  2503.  
  2504. # Indicate that the actual request can include user credentials (boolean value)
  2505. #allow_credentials = true
  2506.  
  2507. # Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
  2508. # Headers. (list value)
  2509. #expose_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  2510.  
  2511. # Maximum cache age of CORS preflight requests. (integer value)
  2512. #max_age = 3600
  2513.  
  2514. # Indicate which methods can be used during the actual request. (list value)
  2515. #allow_methods = GET,POST,PUT,DELETE,OPTIONS
  2516.  
  2517. # Indicate which header field names may be used during the actual request.
  2518. # (list value)
  2519. #allow_headers = Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
  2520.  
  2521.  
  2522. [database]
  2523.  
  2524. #
  2525. # From oslo.db
  2526. #
  2527.  
  2528. # The file name to use with SQLite. (string value)
  2529. # Deprecated group/name - [DEFAULT]/sqlite_db
  2530. #sqlite_db = oslo.sqlite
  2531.  
  2532. # If True, SQLite uses synchronous mode. (boolean value)
  2533. # Deprecated group/name - [DEFAULT]/sqlite_synchronous
  2534. #sqlite_synchronous = true
  2535.  
  2536. # The back end to use for the database. (string value)
  2537. # Deprecated group/name - [DEFAULT]/db_backend
  2538. #backend = sqlalchemy
  2539.  
  2540. # The SQLAlchemy connection string to use to connect to the database. (string
  2541. # value)
  2542. # Deprecated group/name - [DEFAULT]/sql_connection
  2543. # Deprecated group/name - [DATABASE]/sql_connection
  2544. # Deprecated group/name - [sql]/connection
  2545. #connection = <None>
  2546. connection = mysql://cinder:9692445efe0e431a@192.168.1.10/cinder
  2547.  
  2548. # The SQLAlchemy connection string to use to connect to the slave database.
  2549. # (string value)
  2550. #slave_connection = <None>
  2551.  
  2552. # The SQL mode to be used for MySQL sessions. This option, including the
  2553. # default, overrides any server-set SQL mode. To use whatever SQL mode is set
  2554. # by the server configuration, set this to no value. Example: mysql_sql_mode=
  2555. # (string value)
  2556. #mysql_sql_mode = TRADITIONAL
  2557.  
  2558. # Timeout before idle SQL connections are reaped. (integer value)
  2559. # Deprecated group/name - [DEFAULT]/sql_idle_timeout
  2560. # Deprecated group/name - [DATABASE]/sql_idle_timeout
  2561. # Deprecated group/name - [sql]/idle_timeout
  2562. #idle_timeout = 3600
  2563.  
  2564. # Minimum number of SQL connections to keep open in a pool. (integer value)
  2565. # Deprecated group/name - [DEFAULT]/sql_min_pool_size
  2566. # Deprecated group/name - [DATABASE]/sql_min_pool_size
  2567. #min_pool_size = 1
  2568.  
  2569. # Maximum number of SQL connections to keep open in a pool. (integer value)
  2570. # Deprecated group/name - [DEFAULT]/sql_max_pool_size
  2571. # Deprecated group/name - [DATABASE]/sql_max_pool_size
  2572. #max_pool_size = <None>
  2573.  
  2574. # Maximum number of database connection retries during startup. Set to -1 to
  2575. # specify an infinite retry count. (integer value)
  2576. # Deprecated group/name - [DEFAULT]/sql_max_retries
  2577. # Deprecated group/name - [DATABASE]/sql_max_retries
  2578. #max_retries = 10
  2579.  
  2580. # Interval between retries of opening a SQL connection. (integer value)
  2581. # Deprecated group/name - [DEFAULT]/sql_retry_interval
  2582. # Deprecated group/name - [DATABASE]/reconnect_interval
  2583. #retry_interval = 10
  2584.  
  2585. # If set, use this value for max_overflow with SQLAlchemy. (integer value)
  2586. # Deprecated group/name - [DEFAULT]/sql_max_overflow
  2587. # Deprecated group/name - [DATABASE]/sqlalchemy_max_overflow
  2588. #max_overflow = <None>
  2589.  
  2590. # Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
  2591. # value)
  2592. # Deprecated group/name - [DEFAULT]/sql_connection_debug
  2593. #connection_debug = 0
  2594.  
  2595. # Add Python stack traces to SQL as comment strings. (boolean value)
  2596. # Deprecated group/name - [DEFAULT]/sql_connection_trace
  2597. #connection_trace = false
  2598.  
  2599. # If set, use this value for pool_timeout with SQLAlchemy. (integer value)
  2600. # Deprecated group/name - [DATABASE]/sqlalchemy_pool_timeout
  2601. #pool_timeout = <None>
  2602.  
  2603. # Enable the experimental use of database reconnect on connection lost.
  2604. # (boolean value)
  2605. #use_db_reconnect = false
  2606.  
  2607. # Seconds between retries of a database transaction. (integer value)
  2608. #db_retry_interval = 1
  2609.  
  2610. # If True, increases the interval between retries of a database operation up to
  2611. # db_max_retry_interval. (boolean value)
  2612. #db_inc_retry_interval = true
  2613.  
  2614. # If db_inc_retry_interval is set, the maximum seconds between retries of a
  2615. # database operation. (integer value)
  2616. #db_max_retry_interval = 10
  2617.  
  2618. # Maximum retries in case of connection error or deadlock error before error is
  2619. # raised. Set to -1 to specify an infinite retry count. (integer value)
  2620. #db_max_retries = 20
  2621.  
  2622.  
  2623. [fc-zone-manager]
  2624.  
  2625. #
  2626. # From cinder
  2627. #
  2628.  
  2629. # FC Zone Driver responsible for zone management (string value)
  2630. #zone_driver = cinder.zonemanager.drivers.brocade.brcd_fc_zone_driver.BrcdFCZoneDriver
  2631.  
  2632. # Zoning policy configured by user; valid values include "initiator-target" or
  2633. # "initiator" (string value)
  2634. #zoning_policy = initiator-target
  2635.  
  2636. # Comma separated list of Fibre Channel fabric names. This list of names is
  2637. # used to retrieve other SAN credentials for connecting to each SAN fabric
  2638. # (string value)
  2639. #fc_fabric_names = <None>
  2640.  
  2641. # FC SAN Lookup Service (string value)
  2642. #fc_san_lookup_service = cinder.zonemanager.drivers.brocade.brcd_fc_san_lookup_service.BrcdFCSanLookupService
  2643.  
  2644. # Southbound connector for zoning operation (string value)
  2645. #brcd_sb_connector = cinder.zonemanager.drivers.brocade.brcd_fc_zone_client_cli.BrcdFCZoneClientCLI
  2646.  
  2647. # Southbound connector for zoning operation (string value)
  2648. #cisco_sb_connector = cinder.zonemanager.drivers.cisco.cisco_fc_zone_client_cli.CiscoFCZoneClientCLI
  2649.  
  2650.  
  2651. [keymgr]
  2652.  
  2653. #
  2654. # From cinder
  2655. #
  2656.  
  2657. # Authentication url for encryption service. (string value)
  2658. #encryption_auth_url = http://localhost:5000/v3
  2659.  
  2660. # Url for encryption service. (string value)
  2661. #encryption_api_url = http://localhost:9311/v1
  2662.  
  2663. # The full class name of the key manager API class (string value)
  2664. #api_class = cinder.keymgr.conf_key_mgr.ConfKeyManager
  2665.  
  2666. # Fixed key returned by key manager, specified in hex (string value)
  2667. #fixed_key = <None>
  2668.  
  2669.  
  2670. [keystone_authtoken]
  2671.  
  2672. #
  2673. # From keystonemiddleware.auth_token
  2674. #
  2675.  
  2676. # Complete public Identity API endpoint. (string value)
  2677. #auth_uri = <None>
  2678.  
  2679. # API version of the admin Identity API endpoint. (string value)
  2680. #auth_version = <None>
  2681.  
  2682. # Do not handle authorization requests within the middleware, but delegate the
  2683. # authorization decision to downstream WSGI components. (boolean value)
  2684. #delay_auth_decision = false
  2685.  
  2686. # Request timeout value for communicating with Identity API server. (integer
  2687. # value)
  2688. #http_connect_timeout = <None>
  2689.  
  2690. # How many times are we trying to reconnect when communicating with Identity
  2691. # API Server. (integer value)
  2692. #http_request_max_retries = 3
  2693.  
  2694. # Env key for the swift cache. (string value)
  2695. #cache = <None>
  2696.  
  2697. # Required if identity server requires client certificate (string value)
  2698. #certfile = <None>
  2699.  
  2700. # Required if identity server requires client certificate (string value)
  2701. #keyfile = <None>
  2702.  
  2703. # A PEM encoded Certificate Authority to use when verifying HTTPs connections.
  2704. # Defaults to system CAs. (string value)
  2705. #cafile = <None>
  2706.  
  2707. # Verify HTTPS connections. (boolean value)
  2708. #insecure = false
  2709.  
  2710. # The region in which the identity server can be found. (string value)
  2711. #region_name = <None>
  2712.  
  2713. # Directory used to cache files related to PKI tokens. (string value)
  2714. #signing_dir = <None>
  2715.  
  2716. # Optionally specify a list of memcached server(s) to use for caching. If left
  2717. # undefined, tokens will instead be cached in-process. (list value)
  2718. # Deprecated group/name - [DEFAULT]/memcache_servers
  2719. #memcached_servers = <None>
  2720.  
  2721. # In order to prevent excessive effort spent validating tokens, the middleware
  2722. # caches previously-seen tokens for a configurable duration (in seconds). Set
  2723. # to -1 to disable caching completely. (integer value)
  2724. #token_cache_time = 300
  2725.  
  2726. # Determines the frequency at which the list of revoked tokens is retrieved
  2727. # from the Identity service (in seconds). A high number of revocation events
  2728. # combined with a low cache duration may significantly reduce performance.
  2729. # (integer value)
  2730. #revocation_cache_time = 10
  2731.  
  2732. # (Optional) If defined, indicate whether token data should be authenticated or
  2733. # authenticated and encrypted. Acceptable values are MAC or ENCRYPT. If MAC,
  2734. # token data is authenticated (with HMAC) in the cache. If ENCRYPT, token data
  2735. # is encrypted and authenticated in the cache. If the value is not one of these
  2736. # options or empty, auth_token will raise an exception on initialization.
  2737. # (string value)
  2738. #memcache_security_strategy = <None>
  2739.  
  2740. # (Optional, mandatory if memcache_security_strategy is defined) This string is
  2741. # used for key derivation. (string value)
  2742. #memcache_secret_key = <None>
  2743.  
  2744. # (Optional) Number of seconds memcached server is considered dead before it is
  2745. # tried again. (integer value)
  2746. #memcache_pool_dead_retry = 300
  2747.  
  2748. # (Optional) Maximum total number of open connections to every memcached
  2749. # server. (integer value)
  2750. #memcache_pool_maxsize = 10
  2751.  
  2752. # (Optional) Socket timeout in seconds for communicating with a memcached
  2753. # server. (integer value)
  2754. #memcache_pool_socket_timeout = 3
  2755.  
  2756. # (Optional) Number of seconds a connection to memcached is held unused in the
  2757. # pool before it is closed. (integer value)
  2758. #memcache_pool_unused_timeout = 60
  2759.  
  2760. # (Optional) Number of seconds that an operation will wait to get a memcached
  2761. # client connection from the pool. (integer value)
  2762. #memcache_pool_conn_get_timeout = 10
  2763.  
  2764. # (Optional) Use the advanced (eventlet safe) memcached client pool. The
  2765. # advanced pool will only work under python 2.x. (boolean value)
  2766. #memcache_use_advanced_pool = false
  2767.  
  2768. # (Optional) Indicate whether to set the X-Service-Catalog header. If False,
  2769. # middleware will not ask for service catalog on token validation and will not
  2770. # set the X-Service-Catalog header. (boolean value)
  2771. #include_service_catalog = true
  2772.  
  2773. # Used to control the use and type of token binding. Can be set to: "disabled"
  2774. # to not check token binding. "permissive" (default) to validate binding
  2775. # information if the bind type is of a form known to the server and ignore it
  2776. # if not. "strict" like "permissive" but if the bind type is unknown the token
  2777. # will be rejected. "required" any form of token binding is needed to be
  2778. # allowed. Finally the name of a binding method that must be present in tokens.
  2779. # (string value)
  2780. #enforce_token_bind = permissive
  2781.  
  2782. # If true, the revocation list will be checked for cached tokens. This requires
  2783. # that PKI tokens are configured on the identity server. (boolean value)
  2784. #check_revocations_for_cached = false
  2785.  
  2786. # Hash algorithms to use for hashing PKI tokens. This may be a single algorithm
  2787. # or multiple. The algorithms are those supported by Python standard
  2788. # hashlib.new(). The hashes will be tried in the order given, so put the
  2789. # preferred one first for performance. The result of the first hash will be
  2790. # stored in the cache. This will typically be set to multiple values only while
  2791. # migrating from a less secure algorithm to a more secure one. Once all the old
  2792. # tokens are expired this option should be set to a single value for better
  2793. # performance. (list value)
  2794. #hash_algorithms = md5
  2795.  
  2796. # Prefix to prepend at the beginning of the path. Deprecated, use identity_uri.
  2797. # (string value)
  2798. #auth_admin_prefix =
  2799.  
  2800. # Host providing the admin Identity API endpoint. Deprecated, use identity_uri.
  2801. # (string value)
  2802. #auth_host = 127.0.0.1
  2803.  
  2804. # Port of the admin Identity API endpoint. Deprecated, use identity_uri.
  2805. # (integer value)
  2806. #auth_port = 35357
  2807.  
  2808. # Protocol of the admin Identity API endpoint (http or https). Deprecated, use
  2809. # identity_uri. (string value)
  2810. #auth_protocol = https
  2811.  
  2812. # Complete admin Identity API endpoint. This should specify the unversioned
  2813. # root endpoint e.g. https://localhost:35357/ (string value)
  2814. #identity_uri = <None>
  2815.  
  2816. # This option is deprecated and may be removed in a future release. Single
  2817. # shared secret with the Keystone configuration used for bootstrapping a
  2818. # Keystone installation, or otherwise bypassing the normal authentication
  2819. # process. This option should not be used, use `admin_user` and
  2820. # `admin_password` instead. (string value)
  2821. #admin_token = <None>
  2822.  
  2823. # Service username. (string value)
  2824. #admin_user = <None>
  2825.  
  2826. # Service user password. (string value)
  2827. #admin_password = <None>
  2828.  
  2829. # Service tenant name. (string value)
  2830. #admin_tenant_name = admin
  2831.  
  2832.  
  2833. [matchmaker_redis]
  2834.  
  2835. #
  2836. # From oslo.messaging
  2837. #
  2838.  
  2839. # Host to locate redis. (string value)
  2840. #host = 127.0.0.1
  2841.  
  2842. # Use this port to connect to redis host. (integer value)
  2843. #port = 6379
  2844.  
  2845. # Password for Redis server (optional). (string value)
  2846. #password = <None>
  2847.  
  2848. #
  2849. # From oslo.messaging
  2850. #
  2851.  
  2852. # Host to locate redis. (string value)
  2853. #host = 127.0.0.1
  2854.  
  2855. # Use this port to connect to redis host. (integer value)
  2856. #port = 6379
  2857.  
  2858. # Password for Redis server (optional). (string value)
  2859. #password = <None>
  2860.  
  2861.  
  2862. [matchmaker_ring]
  2863.  
  2864. #
  2865. # From oslo.messaging
  2866. #
  2867.  
  2868. # Matchmaker ring file (JSON). (string value)
  2869. # Deprecated group/name - [DEFAULT]/matchmaker_ringfile
  2870. #ringfile = /etc/oslo/matchmaker_ring.json
  2871.  
  2872. #
  2873. # From oslo.messaging
  2874. #
  2875.  
  2876. # Matchmaker ring file (JSON). (string value)
  2877. # Deprecated group/name - [DEFAULT]/matchmaker_ringfile
  2878. #ringfile = /etc/oslo/matchmaker_ring.json
  2879.  
  2880.  
  2881. [oslo_concurrency]
  2882.  
  2883. #
  2884. # From oslo.concurrency
  2885. #
  2886.  
  2887. # Enables or disables inter-process locks. (boolean value)
  2888. # Deprecated group/name - [DEFAULT]/disable_process_locking
  2889. #disable_process_locking = false
  2890.  
  2891. # Directory to use for lock files. For security, the specified directory
  2892. # should only be writable by the user running the processes that need locking.
  2893. # Defaults to environment variable OSLO_LOCK_PATH. If external locks are used,
  2894. # a lock path must be set. (string value)
  2895. # Deprecated group/name - [DEFAULT]/lock_path
  2896. #lock_path = <None>
  2897.  
  2898.  
  2899. [oslo_messaging_amqp]
  2900.  
  2901. #
  2902. # From oslo.messaging
  2903. #
  2904.  
  2905. # address prefix used when sending to a specific server (string value)
  2906. # Deprecated group/name - [amqp1]/server_request_prefix
  2907. #server_request_prefix = exclusive
  2908.  
  2909. # address prefix used when broadcasting to all servers (string value)
  2910. # Deprecated group/name - [amqp1]/broadcast_prefix
  2911. #broadcast_prefix = broadcast
  2912.  
  2913. # address prefix when sending to any server in group (string value)
  2914. # Deprecated group/name - [amqp1]/group_request_prefix
  2915. #group_request_prefix = unicast
  2916.  
  2917. # Name for the AMQP container (string value)
  2918. # Deprecated group/name - [amqp1]/container_name
  2919. #container_name = <None>
  2920.  
  2921. # Timeout for inactive connections (in seconds) (integer value)
  2922. # Deprecated group/name - [amqp1]/idle_timeout
  2923. #idle_timeout = 0
  2924.  
  2925. # Debug: dump AMQP frames to stdout (boolean value)
  2926. # Deprecated group/name - [amqp1]/trace
  2927. #trace = false
  2928.  
  2929. # CA certificate PEM file to verify server certificate (string value)
  2930. # Deprecated group/name - [amqp1]/ssl_ca_file
  2931. #ssl_ca_file =
  2932.  
  2933. # Identifying certificate PEM file to present to clients (string value)
  2934. # Deprecated group/name - [amqp1]/ssl_cert_file
  2935. #ssl_cert_file =
  2936.  
  2937. # Private key PEM file used to sign cert_file certificate (string value)
  2938. # Deprecated group/name - [amqp1]/ssl_key_file
  2939. #ssl_key_file =
  2940.  
  2941. # Password for decrypting ssl_key_file (if encrypted) (string value)
  2942. # Deprecated group/name - [amqp1]/ssl_key_password
  2943. #ssl_key_password = <None>
  2944.  
  2945. # Accept clients using either SSL or plain TCP (boolean value)
  2946. # Deprecated group/name - [amqp1]/allow_insecure_clients
  2947. #allow_insecure_clients = false
  2948.  
  2949. #
  2950. # From oslo.messaging
  2951. #
  2952.  
  2953. # address prefix used when sending to a specific server (string value)
  2954. # Deprecated group/name - [amqp1]/server_request_prefix
  2955. #server_request_prefix = exclusive
  2956.  
  2957. # address prefix used when broadcasting to all servers (string value)
  2958. # Deprecated group/name - [amqp1]/broadcast_prefix
  2959. #broadcast_prefix = broadcast
  2960.  
  2961. # address prefix when sending to any server in group (string value)
  2962. # Deprecated group/name - [amqp1]/group_request_prefix
  2963. #group_request_prefix = unicast
  2964.  
  2965. # Name for the AMQP container (string value)
  2966. # Deprecated group/name - [amqp1]/container_name
  2967. #container_name = <None>
  2968.  
  2969. # Timeout for inactive connections (in seconds) (integer value)
  2970. # Deprecated group/name - [amqp1]/idle_timeout
  2971. #idle_timeout = 0
  2972.  
  2973. # Debug: dump AMQP frames to stdout (boolean value)
  2974. # Deprecated group/name - [amqp1]/trace
  2975. #trace = false
  2976.  
  2977. # CA certificate PEM file to verify server certificate (string value)
  2978. # Deprecated group/name - [amqp1]/ssl_ca_file
  2979. #ssl_ca_file =
  2980.  
  2981. # Identifying certificate PEM file to present to clients (string value)
  2982. # Deprecated group/name - [amqp1]/ssl_cert_file
  2983. #ssl_cert_file =
  2984.  
  2985. # Private key PEM file used to sign cert_file certificate (string value)
  2986. # Deprecated group/name - [amqp1]/ssl_key_file
  2987. #ssl_key_file =
  2988.  
  2989. # Password for decrypting ssl_key_file (if encrypted) (string value)
  2990. # Deprecated group/name - [amqp1]/ssl_key_password
  2991. #ssl_key_password = <None>
  2992.  
  2993. # Accept clients using either SSL or plain TCP (boolean value)
  2994. # Deprecated group/name - [amqp1]/allow_insecure_clients
  2995. #allow_insecure_clients = false
  2996.  
  2997.  
  2998. [oslo_messaging_qpid]
  2999.  
  3000. #
  3001. # From oslo.messaging
  3002. #
  3003.  
  3004. # Use durable queues in AMQP. (boolean value)
  3005. # Deprecated group/name - [DEFAULT]/amqp_durable_queues
  3006. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  3007. #amqp_durable_queues = false
  3008.  
  3009. # Auto-delete queues in AMQP. (boolean value)
  3010. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  3011. #amqp_auto_delete = false
  3012.  
  3013. # Send a single AMQP reply to call message. The current behaviour since oslo-
  3014. # incubator is to send two AMQP replies - first one with the payload, a second
  3015. # one to ensure the other have finish to send the payload. We are going to
  3016. # remove it in the N release, but we must keep backward compatible at the same
  3017. # time. This option provides such compatibility - it defaults to False in
  3018. # Liberty and can be turned on for early adopters with a new installations or
  3019. # for testing. Please note, that this option will be removed in the Mitaka
  3020. # release. (boolean value)
  3021. #send_single_reply = false
  3022.  
  3023. # Qpid broker hostname. (string value)
  3024. # Deprecated group/name - [DEFAULT]/qpid_hostname
  3025. #qpid_hostname = localhost
  3026.  
  3027. # Qpid broker port. (integer value)
  3028. # Deprecated group/name - [DEFAULT]/qpid_port
  3029. #qpid_port = 5672
  3030.  
  3031. # Qpid HA cluster host:port pairs. (list value)
  3032. # Deprecated group/name - [DEFAULT]/qpid_hosts
  3033. #qpid_hosts = $qpid_hostname:$qpid_port
  3034.  
  3035. # Username for Qpid connection. (string value)
  3036. # Deprecated group/name - [DEFAULT]/qpid_username
  3037. #qpid_username =
  3038.  
  3039. # Password for Qpid connection. (string value)
  3040. # Deprecated group/name - [DEFAULT]/qpid_password
  3041. #qpid_password =
  3042.  
  3043. # Space separated list of SASL mechanisms to use for auth. (string value)
  3044. # Deprecated group/name - [DEFAULT]/qpid_sasl_mechanisms
  3045. #qpid_sasl_mechanisms =
  3046.  
  3047. # Seconds between connection keepalive heartbeats. (integer value)
  3048. # Deprecated group/name - [DEFAULT]/qpid_heartbeat
  3049. #qpid_heartbeat = 60
  3050.  
  3051. # Transport to use, either 'tcp' or 'ssl'. (string value)
  3052. # Deprecated group/name - [DEFAULT]/qpid_protocol
  3053. #qpid_protocol = tcp
  3054.  
  3055. # Whether to disable the Nagle algorithm. (boolean value)
  3056. # Deprecated group/name - [DEFAULT]/qpid_tcp_nodelay
  3057. #qpid_tcp_nodelay = true
  3058.  
  3059. # The number of prefetched messages held by receiver. (integer value)
  3060. # Deprecated group/name - [DEFAULT]/qpid_receiver_capacity
  3061. #qpid_receiver_capacity = 1
  3062.  
  3063. # The qpid topology version to use. Version 1 is what was originally used by
  3064. # impl_qpid. Version 2 includes some backwards-incompatible changes that allow
  3065. # broker federation to work. Users should update to version 2 when they are
  3066. # able to take everything down, as it requires a clean break. (integer value)
  3067. # Deprecated group/name - [DEFAULT]/qpid_topology_version
  3068. #qpid_topology_version = 1
  3069.  
  3070. #
  3071. # From oslo.messaging
  3072. #
  3073.  
  3074. # Use durable queues in AMQP. (boolean value)
  3075. # Deprecated group/name - [DEFAULT]/amqp_durable_queues
  3076. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  3077. #amqp_durable_queues = false
  3078.  
  3079. # Auto-delete queues in AMQP. (boolean value)
  3080. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  3081. #amqp_auto_delete = false
  3082.  
  3083. # Send a single AMQP reply to call message. The current behaviour since oslo-
  3084. # incubator is to send two AMQP replies - first one with the payload, a second
  3085. # one to ensure the other have finish to send the payload. We are going to
  3086. # remove it in the N release, but we must keep backward compatible at the same
  3087. # time. This option provides such compatibility - it defaults to False in
  3088. # Liberty and can be turned on for early adopters with a new installations or
  3089. # for testing. Please note, that this option will be removed in the Mitaka
  3090. # release. (boolean value)
  3091. #send_single_reply = false
  3092.  
  3093. # Qpid broker hostname. (string value)
  3094. # Deprecated group/name - [DEFAULT]/qpid_hostname
  3095. #qpid_hostname = localhost
  3096.  
  3097. # Qpid broker port. (integer value)
  3098. # Deprecated group/name - [DEFAULT]/qpid_port
  3099. #qpid_port = 5672
  3100.  
  3101. # Qpid HA cluster host:port pairs. (list value)
  3102. # Deprecated group/name - [DEFAULT]/qpid_hosts
  3103. #qpid_hosts = $qpid_hostname:$qpid_port
  3104.  
  3105. # Username for Qpid connection. (string value)
  3106. # Deprecated group/name - [DEFAULT]/qpid_username
  3107. #qpid_username =
  3108.  
  3109. # Password for Qpid connection. (string value)
  3110. # Deprecated group/name - [DEFAULT]/qpid_password
  3111. #qpid_password =
  3112.  
  3113. # Space separated list of SASL mechanisms to use for auth. (string value)
  3114. # Deprecated group/name - [DEFAULT]/qpid_sasl_mechanisms
  3115. #qpid_sasl_mechanisms =
  3116.  
  3117. # Seconds between connection keepalive heartbeats. (integer value)
  3118. # Deprecated group/name - [DEFAULT]/qpid_heartbeat
  3119. #qpid_heartbeat = 60
  3120.  
  3121. # Transport to use, either 'tcp' or 'ssl'. (string value)
  3122. # Deprecated group/name - [DEFAULT]/qpid_protocol
  3123. #qpid_protocol = tcp
  3124.  
  3125. # Whether to disable the Nagle algorithm. (boolean value)
  3126. # Deprecated group/name - [DEFAULT]/qpid_tcp_nodelay
  3127. #qpid_tcp_nodelay = true
  3128.  
  3129. # The number of prefetched messages held by receiver. (integer value)
  3130. # Deprecated group/name - [DEFAULT]/qpid_receiver_capacity
  3131. #qpid_receiver_capacity = 1
  3132.  
  3133. # The qpid topology version to use. Version 1 is what was originally used by
  3134. # impl_qpid. Version 2 includes some backwards-incompatible changes that allow
  3135. # broker federation to work. Users should update to version 2 when they are
  3136. # able to take everything down, as it requires a clean break. (integer value)
  3137. # Deprecated group/name - [DEFAULT]/qpid_topology_version
  3138. #qpid_topology_version = 1
  3139.  
  3140.  
  3141. [oslo_messaging_rabbit]
  3142.  
  3143. #
  3144. # From oslo.messaging
  3145. #
  3146.  
  3147. # Use durable queues in AMQP. (boolean value)
  3148. # Deprecated group/name - [DEFAULT]/amqp_durable_queues
  3149. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  3150. #amqp_durable_queues = false
  3151.  
  3152. # Auto-delete queues in AMQP. (boolean value)
  3153. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  3154. #amqp_auto_delete = false
  3155.  
  3156. # Send a single AMQP reply to call message. The current behaviour since oslo-
  3157. # incubator is to send two AMQP replies - first one with the payload, a second
  3158. # one to ensure the other have finish to send the payload. We are going to
  3159. # remove it in the N release, but we must keep backward compatible at the same
  3160. # time. This option provides such compatibility - it defaults to False in
  3161. # Liberty and can be turned on for early adopters with a new installations or
  3162. # for testing. Please note, that this option will be removed in the Mitaka
  3163. # release. (boolean value)
  3164. #send_single_reply = false
  3165.  
  3166. # SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
  3167. # SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
  3168. # distributions. (string value)
  3169. # Deprecated group/name - [DEFAULT]/kombu_ssl_version
  3170. #kombu_ssl_version =
  3171.  
  3172. # SSL key file (valid only if SSL enabled). (string value)
  3173. # Deprecated group/name - [DEFAULT]/kombu_ssl_keyfile
  3174. #kombu_ssl_keyfile =
  3175. kombu_ssl_keyfile =
  3176.  
  3177. # SSL cert file (valid only if SSL enabled). (string value)
  3178. # Deprecated group/name - [DEFAULT]/kombu_ssl_certfile
  3179. #kombu_ssl_certfile =
  3180. kombu_ssl_certfile =
  3181.  
  3182. # SSL certification authority file (valid only if SSL enabled). (string value)
  3183. # Deprecated group/name - [DEFAULT]/kombu_ssl_ca_certs
  3184. #kombu_ssl_ca_certs =
  3185. kombu_ssl_ca_certs =
  3186.  
  3187. # How long to wait before reconnecting in response to an AMQP consumer cancel
  3188. # notification. (floating point value)
  3189. # Deprecated group/name - [DEFAULT]/kombu_reconnect_delay
  3190. #kombu_reconnect_delay = 1.0
  3191.  
  3192. # How long to wait before considering a reconnect attempt to have failed. This
  3193. # value should not be longer than rpc_response_timeout. (integer value)
  3194. #kombu_reconnect_timeout = 60
  3195.  
  3196. # The RabbitMQ broker address where a single node is used. (string value)
  3197. # Deprecated group/name - [DEFAULT]/rabbit_host
  3198. #rabbit_host = localhost
  3199. rabbit_host = 192.168.1.10
  3200.  
  3201. # The RabbitMQ broker port where a single node is used. (integer value)
  3202. # Deprecated group/name - [DEFAULT]/rabbit_port
  3203. #rabbit_port = 5672
  3204. rabbit_port = 5672
  3205.  
  3206. # RabbitMQ HA cluster host:port pairs. (list value)
  3207. # Deprecated group/name - [DEFAULT]/rabbit_hosts
  3208. #rabbit_hosts = $rabbit_host:$rabbit_port
  3209. rabbit_hosts = 192.168.1.10:5672
  3210.  
  3211. # Connect over SSL for RabbitMQ. (boolean value)
  3212. # Deprecated group/name - [DEFAULT]/rabbit_use_ssl
  3213. #rabbit_use_ssl = false
  3214. rabbit_use_ssl = False
  3215.  
  3216. # The RabbitMQ userid. (string value)
  3217. # Deprecated group/name - [DEFAULT]/rabbit_userid
  3218. #rabbit_userid = guest
  3219. rabbit_userid = guest
  3220.  
  3221. # The RabbitMQ password. (string value)
  3222. # Deprecated group/name - [DEFAULT]/rabbit_password
  3223. #rabbit_password = guest
  3224. rabbit_password = guest
  3225.  
  3226. # The RabbitMQ login method. (string value)
  3227. # Deprecated group/name - [DEFAULT]/rabbit_login_method
  3228. #rabbit_login_method = AMQPLAIN
  3229.  
  3230. # The RabbitMQ virtual host. (string value)
  3231. # Deprecated group/name - [DEFAULT]/rabbit_virtual_host
  3232. #rabbit_virtual_host = /
  3233. rabbit_virtual_host = /
  3234.  
  3235. # How frequently to retry connecting with RabbitMQ. (integer value)
  3236. #rabbit_retry_interval = 1
  3237.  
  3238. # How long to backoff for between retries when connecting to RabbitMQ. (integer
  3239. # value)
  3240. # Deprecated group/name - [DEFAULT]/rabbit_retry_backoff
  3241. #rabbit_retry_backoff = 2
  3242.  
  3243. # Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry
  3244. # count). (integer value)
  3245. # Deprecated group/name - [DEFAULT]/rabbit_max_retries
  3246. #rabbit_max_retries = 0
  3247.  
  3248. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you
  3249. # must wipe the RabbitMQ database. (boolean value)
  3250. # Deprecated group/name - [DEFAULT]/rabbit_ha_queues
  3251. #rabbit_ha_queues = false
  3252. rabbit_ha_queues = False
  3253.  
  3254. # Number of seconds after which the Rabbit broker is considered down if
  3255. # heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL (integer
  3256. # value)
  3257. #heartbeat_timeout_threshold = 60
  3258. heartbeat_timeout_threshold = 0
  3259.  
  3260. # How often times during the heartbeat_timeout_threshold we check the
  3261. # heartbeat. (integer value)
  3262. #heartbeat_rate = 2
  3263. heartbeat_rate = 2
  3264.  
  3265. # Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake (boolean value)
  3266. # Deprecated group/name - [DEFAULT]/fake_rabbit
  3267. #fake_rabbit = false
  3268.  
  3269. #
  3270. # From oslo.messaging
  3271. #
  3272.  
  3273. # Use durable queues in AMQP. (boolean value)
  3274. # Deprecated group/name - [DEFAULT]/amqp_durable_queues
  3275. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  3276. #amqp_durable_queues = false
  3277.  
  3278. # Auto-delete queues in AMQP. (boolean value)
  3279. # Deprecated group/name - [DEFAULT]/amqp_auto_delete
  3280. #amqp_auto_delete = false
  3281.  
  3282. # Send a single AMQP reply to call message. The current behaviour since oslo-
  3283. # incubator is to send two AMQP replies - first one with the payload, a second
  3284. # one to ensure the other have finish to send the payload. We are going to
  3285. # remove it in the N release, but we must keep backward compatible at the same
  3286. # time. This option provides such compatibility - it defaults to False in
  3287. # Liberty and can be turned on for early adopters with a new installations or
  3288. # for testing. Please note, that this option will be removed in the Mitaka
  3289. # release. (boolean value)
  3290. #send_single_reply = false
  3291.  
  3292. # SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
  3293. # SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
  3294. # distributions. (string value)
  3295. # Deprecated group/name - [DEFAULT]/kombu_ssl_version
  3296. #kombu_ssl_version =
  3297.  
  3298. # SSL key file (valid only if SSL enabled). (string value)
  3299. # Deprecated group/name - [DEFAULT]/kombu_ssl_keyfile
  3300. #kombu_ssl_keyfile =
  3301.  
  3302. # SSL cert file (valid only if SSL enabled). (string value)
  3303. # Deprecated group/name - [DEFAULT]/kombu_ssl_certfile
  3304. #kombu_ssl_certfile =
  3305.  
  3306. # SSL certification authority file (valid only if SSL enabled). (string value)
  3307. # Deprecated group/name - [DEFAULT]/kombu_ssl_ca_certs
  3308. #kombu_ssl_ca_certs =
  3309.  
  3310. # How long to wait before reconnecting in response to an AMQP consumer cancel
  3311. # notification. (floating point value)
  3312. # Deprecated group/name - [DEFAULT]/kombu_reconnect_delay
  3313. #kombu_reconnect_delay = 1.0
  3314.  
  3315. # How long to wait before considering a reconnect attempt to have failed. This
  3316. # value should not be longer than rpc_response_timeout. (integer value)
  3317. #kombu_reconnect_timeout = 60
  3318.  
  3319. # The RabbitMQ broker address where a single node is used. (string value)
  3320. # Deprecated group/name - [DEFAULT]/rabbit_host
  3321. #rabbit_host = localhost
  3322.  
  3323. # The RabbitMQ broker port where a single node is used. (integer value)
  3324. # Deprecated group/name - [DEFAULT]/rabbit_port
  3325. #rabbit_port = 5672
  3326.  
  3327. # RabbitMQ HA cluster host:port pairs. (list value)
  3328. # Deprecated group/name - [DEFAULT]/rabbit_hosts
  3329. #rabbit_hosts = $rabbit_host:$rabbit_port
  3330.  
  3331. # Connect over SSL for RabbitMQ. (boolean value)
  3332. # Deprecated group/name - [DEFAULT]/rabbit_use_ssl
  3333. #rabbit_use_ssl = false
  3334.  
  3335. # The RabbitMQ userid. (string value)
  3336. # Deprecated group/name - [DEFAULT]/rabbit_userid
  3337. #rabbit_userid = guest
  3338.  
  3339. # The RabbitMQ password. (string value)
  3340. # Deprecated group/name - [DEFAULT]/rabbit_password
  3341. #rabbit_password = guest
  3342.  
  3343. # The RabbitMQ login method. (string value)
  3344. # Deprecated group/name - [DEFAULT]/rabbit_login_method
  3345. #rabbit_login_method = AMQPLAIN
  3346.  
  3347. # The RabbitMQ virtual host. (string value)
  3348. # Deprecated group/name - [DEFAULT]/rabbit_virtual_host
  3349. #rabbit_virtual_host = /
  3350.  
  3351. # How frequently to retry connecting with RabbitMQ. (integer value)
  3352. #rabbit_retry_interval = 1
  3353.  
  3354. # How long to backoff for between retries when connecting to RabbitMQ. (integer
  3355. # value)
  3356. # Deprecated group/name - [DEFAULT]/rabbit_retry_backoff
  3357. #rabbit_retry_backoff = 2
  3358.  
  3359. # Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry
  3360. # count). (integer value)
  3361. # Deprecated group/name - [DEFAULT]/rabbit_max_retries
  3362. #rabbit_max_retries = 0
  3363.  
  3364. # Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you
  3365. # must wipe the RabbitMQ database. (boolean value)
  3366. # Deprecated group/name - [DEFAULT]/rabbit_ha_queues
  3367. #rabbit_ha_queues = false
  3368.  
  3369. # Number of seconds after which the Rabbit broker is considered down if
  3370. # heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL (integer
  3371. # value)
  3372. #heartbeat_timeout_threshold = 60
  3373.  
  3374. # How often times during the heartbeat_timeout_threshold we check the
  3375. # heartbeat. (integer value)
  3376. #heartbeat_rate = 2
  3377.  
  3378. # Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake (boolean value)
  3379. # Deprecated group/name - [DEFAULT]/fake_rabbit
  3380. #fake_rabbit = false
  3381.  
  3382.  
  3383. [oslo_middleware]
  3384.  
  3385. #
  3386. # From oslo.middleware
  3387. #
  3388.  
  3389. # The maximum body size for each request, in bytes. (integer value)
  3390. # Deprecated group/name - [DEFAULT]/osapi_max_request_body_size
  3391. # Deprecated group/name - [DEFAULT]/max_request_body_size
  3392. #max_request_body_size = 114688
  3393.  
  3394. #
  3395. # From oslo.middleware
  3396. #
  3397.  
  3398. # The HTTP Header that will be used to determine what the original request
  3399. # protocol scheme was, even if it was hidden by an SSL termination proxy.
  3400. # (string value)
  3401. #secure_proxy_ssl_header = X-Forwarded-Proto
  3402.  
  3403.  
  3404. [oslo_policy]
  3405.  
  3406. #
  3407. # From oslo.policy
  3408. #
  3409.  
  3410. # The JSON file that defines policies. (string value)
  3411. # Deprecated group/name - [DEFAULT]/policy_file
  3412. #policy_file = policy.json
  3413.  
  3414. # Default rule. Enforced when a requested rule is not found. (string value)
  3415. # Deprecated group/name - [DEFAULT]/policy_default_rule
  3416. #policy_default_rule = default
  3417.  
  3418. # Directories where policy configuration files are stored. They can be relative
  3419. # to any directory in the search path defined by the config_dir option, or
  3420. # absolute paths. The file defined by policy_file must exist for these
  3421. # directories to be searched. Missing or empty directories are ignored. (multi
  3422. # valued)
  3423. # Deprecated group/name - [DEFAULT]/policy_dirs
  3424. # This option is deprecated for removal.
  3425. # Its value may be silently ignored in the future.
  3426. #policy_dirs = policy.d
  3427.  
  3428.  
  3429. [oslo_reports]
  3430.  
  3431. #
  3432. # From oslo.reports
  3433. #
  3434.  
  3435. # Path to a log directory where to create a file (string value)
  3436. #log_dir = <None>
  3437.  
  3438.  
  3439. [profiler]
  3440.  
  3441. #
  3442. # From cinder
  3443. #
  3444.  
  3445. # If False fully disable profiling feature. (boolean value)
  3446. #profiler_enabled = false
  3447.  
  3448. # If False doesn't trace SQL requests. (boolean value)
  3449. #trace_sqlalchemy = false
  3450.  
  3451. [lvm]
  3452. iscsi_helper=lioadm
  3453. volume_group=cinder-volumes
  3454. iscsi_ip_address=192.168.1.10
  3455. volume_driver=cinder.volume.drivers.lvm.LVMVolumeDriver
  3456. volumes_dir=/var/lib/cinder/volumes
  3457. iscsi_protocol=iscsi
  3458. volume_backend_name=lvm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement