summaryrefslogtreecommitdiff
path: root/ironic/tests/unit/conductor/test_manager.py
diff options
context:
space:
mode:
authorDmitry Tantsur <dtantsur@protonmail.com>2021-05-03 17:03:29 +0200
committerDmitry Tantsur <dtantsur@protonmail.com>2021-05-04 14:28:25 +0200
commit929907d68473ae8a433ebb8c4dcb110473d42676 (patch)
tree3b946e32ddbe3e7e91f1a8a88625b2e23af06add /ironic/tests/unit/conductor/test_manager.py
parente79f163837dd2c27f84f693aba0f1575fa2353f7 (diff)
downloadironic-929907d68473ae8a433ebb8c4dcb110473d42676.tar.gz
Bye-bye iSCSI deploy, you served us well
The iSCSI deploy was very easy to start with, but it has since become apparently that it suffers from scalability and maintenance issues. It was deprecated in the Victoria cycle and can now be removed. Hide the guide to upgrade to hardware types since it's very outdated. I had to remove the iBMC diagram since my SVG-fu is not enough to fix it. Change-Id: I2cd6bf7b27fe0be2c08104b0cc37654b506b2e62
Diffstat (limited to 'ironic/tests/unit/conductor/test_manager.py')
-rw-r--r--ironic/tests/unit/conductor/test_manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic/tests/unit/conductor/test_manager.py b/ironic/tests/unit/conductor/test_manager.py
index 48c62d613..8b60e7c64 100644
--- a/ironic/tests/unit/conductor/test_manager.py
+++ b/ironic/tests/unit/conductor/test_manager.py
@@ -713,7 +713,7 @@ class UpdateNodeTestCase(mgr_utils.ServiceSetUpMixin, db_base.DbTestCase):
IFACE_UPDATE_DICT = {
'boot_interface': UpdateInterfaces('pxe', 'fake'),
'console_interface': UpdateInterfaces('no-console', 'fake'),
- 'deploy_interface': UpdateInterfaces('iscsi', 'fake'),
+ 'deploy_interface': UpdateInterfaces('direct', 'fake'),
'inspect_interface': UpdateInterfaces('no-inspect', 'fake'),
'management_interface': UpdateInterfaces(None, 'fake'),
'network_interface': UpdateInterfaces('noop', 'flat'),
@@ -984,7 +984,7 @@ class UpdateNodeTestCase(mgr_utils.ServiceSetUpMixin, db_base.DbTestCase):
deploy_interface='fake',
extra={'test': 'one'})
- node.deploy_interface = 'iscsi'
+ node.deploy_interface = 'direct'
exc = self.assertRaises(messaging.rpc.ExpectedException,
self.service.update_node,
self.context, node)