Merge "Adds enable_ata_secure_erase option"

This commit is contained in:
Zuul 2018-06-29 19:55:51 +00:00 committed by Gerrit Code Review
commit d3a2d5764a
4 changed files with 16 additions and 0 deletions

View File

@ -27,6 +27,10 @@ opts = [
cfg.StrOpt('http_root',
default='/httpboot',
help=_("ironic-conductor node's HTTP root path.")),
cfg.BoolOpt('enable_ata_secure_erase',
default=True,
help=_('Whether to support the use of ATA Secure Erase '
'during the cleaning process. Defaults to True.')),
cfg.IntOpt('erase_devices_priority',
help=_('Priority to run in-band erase devices via the Ironic '
'Python Agent ramdisk. If unset, will use the priority '

View File

@ -642,6 +642,8 @@ def agent_add_clean_params(task):
info['agent_erase_devices_zeroize'] = zeroize
erase_fallback = CONF.deploy.continue_if_disk_secure_erase_fails
info['agent_continue_if_ata_erase_failed'] = erase_fallback
secure_erase = CONF.deploy.enable_ata_secure_erase
info['agent_enable_ata_secure_erase'] = secure_erase
task.node.driver_internal_info = info
task.node.save()

View File

@ -1623,6 +1623,7 @@ class AgentMethodsTestCase(db_base.DbTestCase):
'deploy')
cfg.CONF.set_override('continue_if_disk_secure_erase_fails', True,
'deploy')
cfg.CONF.set_override('enable_ata_secure_erase', False, 'deploy')
with task_manager.acquire(
self.context, self.node.uuid, shared=False) as task:
utils.agent_add_clean_params(task)
@ -1632,6 +1633,8 @@ class AgentMethodsTestCase(db_base.DbTestCase):
'agent_erase_devices_zeroize'])
self.assertIs(True, task.node.driver_internal_info[
'agent_continue_if_ata_erase_failed'])
self.assertIs(False, task.node.driver_internal_info[
'agent_enable_ata_secure_erase'])
@mock.patch.object(pxe.PXEBoot, 'prepare_ramdisk', autospec=True)
@mock.patch('ironic.conductor.utils.node_power_action', autospec=True)

View File

@ -0,0 +1,7 @@
---
features:
- |
Adds the ``[deploy]enable_ata_secure_erase`` option which allows an
operator to disable ATA Secure Erase for all nodes being managed by
the conductor. This setting defaults to ``True`` which aligns with
the prior behavior of the Bare Metal service.