Remove iscsi deploy interface from minion node

This is continuation of patch[1] to remove iscsi deploy interface
from minion node. iscsi deploy interface is removed after a year of
deprecation (and a few ML threads)[2]

[1] https://review.opendev.org/c/openstack/tripleo-heat-templates/+/749475
[2] http://lists.openstack.org/pipermail/openstack-discuss/2020-September/016952.html

Related-Bug: #1931417
Change-Id: Id698a88a83e5218eb6254ae2fe4af6accf0a7306
This commit is contained in:
Sandeep Yadav 2021-06-09 17:23:30 +05:30
parent 776d375ff0
commit 36e680fee0
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ parameter_defaults:
# Enabled deploy interface implementations. Each hardware type must have at least one valid implementation enabled.
# Type: comma_delimited_list
IronicEnabledDeployInterfaces: ['iscsi', 'direct', 'ansible']
IronicEnabledDeployInterfaces: ['direct', 'ansible']
# Enabled Ironic hardware types
# Type: comma_delimited_list

View File

@ -59,7 +59,7 @@ environments:
IronicEnabledHardwareTypes: ['ipmi', 'redfish', 'idrac', 'ilo']
IronicEnabledBootInterfaces: ['pxe', 'ilo-pxe']
IronicEnabledConsoleInterfaces: ['ipmitool-socat', 'ilo', 'no-console']
IronicEnabledDeployInterfaces: ['iscsi', 'direct', 'ansible']
IronicEnabledDeployInterfaces: ['direct', 'ansible']
IronicEnabledInspectInterfaces: ['inspector', 'no-inspect']
IronicEnabledManagementInterfaces: ['ipmitool', 'redfish', 'idrac', 'ilo']
IronicEnabledNetworkInterfaces: ['flat']