Remove deprecated "shred" option for volume_clear

Cinder removed the shred option for "volume_clear" in Ocata, it
performed the same actions as the "zero" option.

Change-Id: Iacad9f6e23effabc9baf0d5995d1c287cb1163cb
This commit is contained in:
Andy McCrae 2016-12-12 12:57:23 +00:00
parent f47eca998d
commit ac55b9ee99
2 changed files with 7 additions and 3 deletions

View File

@ -162,9 +162,8 @@ cinder_rpc_backend: rabbit
cinder_rpc_executor_thread_pool_size: 64
cinder_rpc_response_timeout: 60
# (StrOpt) Method used to wipe old volumes (valid options are: none, zero,
# shred)
cinder_volume_clear: shred
# (StrOpt) Method used to wipe old volumes (valid options are: none, zero)
cinder_volume_clear: zero
# (StrOpt) The flag to pass to ionice to alter the i/o priority of the process
# used to zero a volume after deletion, for example "-c3" for idle only
# priority.

View File

@ -0,0 +1,5 @@
---
upgrade:
- The ``cinder`` project removed the ``shred`` value for the
``volume_clear`` option. The default for the ``os_cinder``
OpenStack-Ansible role has changed to ``zero``.