Merge "Allow operators to change hw_disk_discard in Nova"
This commit is contained in:
commit
6910d25f20
@ -13,6 +13,10 @@ nova_pool_name: "{{ ceph_nova_pool_name }}"
|
||||
nova_pool_type: "{{ ceph_nova_pool_type }}"
|
||||
nova_cache_mode: "{{ ceph_nova_cache_mode }}"
|
||||
|
||||
# Discard option for nova managed disks. Requires libvirt (1, 0, 6) or later and
|
||||
# qemu (1, 6, 0) or later. Set to "" to disable.
|
||||
nova_hw_disk_discard: "unmap"
|
||||
|
||||
|
||||
####################
|
||||
# Database
|
||||
|
@ -174,7 +174,9 @@ images_rbd_pool = {{ ceph_nova_pool_name }}
|
||||
images_rbd_ceph_conf = /etc/ceph/ceph.conf
|
||||
rbd_user = nova
|
||||
disk_cachemodes="network=writeback"
|
||||
hw_disk_discard = unmap
|
||||
{% if nova_hw_disk_discard != '' %}
|
||||
hw_disk_discard = {{ nova_hw_disk_discard }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if nova_backend == "rbd" %}
|
||||
rbd_secret_uuid = {{ rbd_secret_uuid }}
|
||||
|
Loading…
Reference in New Issue
Block a user