Remove ipxe_enabled ppc64le validation

This validation is no longer helpful, and it prevents deploying for
multi-architecture x86/ppc64le environments.

Change-Id: Ibb71e5dabaf09e45f0d2671aa0dfa60944728a2f
(cherry picked from commit f9e5d79f91)
This commit is contained in:
Steve Baker 2021-09-29 09:59:03 +13:00
parent a0e3b17f35
commit 64732f9395
1 changed files with 0 additions and 7 deletions

View File

@ -403,11 +403,6 @@ def _validate_architecure_options():
LOG.error(_('Undercloud configuration validation failed: %s'), message)
raise FailedValidation(message)
def _validate_ppc64le_exclusive_opts(error_callback):
if 'ipxe_enabled' in CONF and CONF['ipxe_enabled']:
error_callback(_('Currently iPXE boot isn\'t supported with '
'ppc64le systems but is enabled'))
def _validate_additional_architectures(error_callback):
for arch in CONF['additional_architectures']:
if arch not in constants.ADDITIONAL_ARCHITECTURES:
@ -420,8 +415,6 @@ def _validate_architecure_options():
'%(all_architectures)s') % params)
_validate_additional_architectures(error_handler)
if 'ppc64le' in CONF['additional_architectures']:
_validate_ppc64le_exclusive_opts(error_handler)
def _checking_status(item):