Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 1 | |
| 2 | [{{ backend_name }}] |
Jakub Pavlik | edd4610 | 2016-01-08 16:20:38 +0100 | [diff] [blame] | 3 | volume_backend_name={{ backend_name }} |
Jakub Pavlik | 5d7df0d | 2016-01-06 13:08:30 +0100 | [diff] [blame] | 4 | volume_driver = cinder.volume.drivers.rbd.RBDDriver |
| 5 | # |
| 6 | # Options defined in cinder.volume.drivers.rbd |
| 7 | # |
| 8 | # The RADOS pool where rbd volumes are stored (string value) |
| 9 | #rbd_pool=volumes |
| 10 | rbd_pool={{ backend.pool }} |
| 11 | |
| 12 | # The RADOS client name for accessing rbd volumes - only set |
| 13 | # when using cephx authentication (string value) |
| 14 | #rbd_user=cinder |
| 15 | rbd_user={{ backend.user }} |
| 16 | |
| 17 | # Path to the ceph configuration file (string value) |
| 18 | #rbd_ceph_conf= |
| 19 | rbd_ceph_conf=/etc/ceph/ceph.conf |
| 20 | |
| 21 | # Flatten volumes created from snapshots to remove dependency |
| 22 | # from volume to snapshot (boolean value) |
| 23 | #rbd_flatten_volume_from_snapshot=false |
| 24 | |
| 25 | # The libvirt uuid of the secret for the rbd_user volumes |
| 26 | # (string value) |
| 27 | #rbd_secret_uuid=da74ccb7-aa59-1721-a172-0006b1aa4e3e |
| 28 | rbd_secret_uuid={{ backend.secret_uuid }} |
| 29 | |
| 30 | # Directory where temporary image files are stored when the |
| 31 | # volume driver does not write them directly to the volume. |
| 32 | # (string value) |
| 33 | #volume_tmp_dir=<None> |
| 34 | |
| 35 | # Maximum number of nested volume clones that are taken before |
| 36 | # a flatten occurs. Set to 0 to disable cloning. (integer |
| 37 | # value) |
| 38 | #rbd_max_clone_depth=5 |
| 39 | |
| 40 | # Volumes will be chunked into objects of this size (in |
| 41 | # megabytes). (integer value) |
| 42 | #rbd_store_chunk_size=4 |
| 43 | |
| 44 | # Timeout value (in seconds) used when connecting to ceph |
| 45 | # cluster. If value < 0, no timeout is set and default |
| 46 | # librados value is used. (integer value) |
| 47 | #rados_connect_timeout=-1 |