From a885a0544d46f18d373e685f877bd8a17d3eba89 Mon Sep 17 00:00:00 2001 From: cid Date: Wed, 17 Jul 2024 13:51:48 +0100 Subject: [PATCH] Update configuration value in iRMC Addresses the inline TODO within the Ironic codebase, to set the ``kernel_append_params`` to the same value as in the [pxe] configuration after the Xena release. Current Release: Dalmatian Change-Id: I1ce3ab560ab04979b7f31393a9877c4d1314925c --- ironic/conf/irmc.py | 3 +-- ...ate-value-of-a-configuration-option-91708f3366afd4c6.yaml | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/update-value-of-a-configuration-option-91708f3366afd4c6.yaml diff --git a/ironic/conf/irmc.py b/ironic/conf/irmc.py index 68ee43b3a3..e36c83d604 100644 --- a/ironic/conf/irmc.py +++ b/ironic/conf/irmc.py @@ -130,8 +130,7 @@ opts = [ 'Foreground Initialization (FGI) will start 5 minutes ' 'after creating virtual drives.')), cfg.StrOpt('kernel_append_params', - # TODO(dtantsur): set to the same value as in [pxe] after Xena - default=None, + default='nofb vga=normal', mutable=True, help=_('Additional kernel parameters to pass down to the ' 'instance kernel. These parameters can be consumed by ' diff --git a/releasenotes/notes/update-value-of-a-configuration-option-91708f3366afd4c6.yaml b/releasenotes/notes/update-value-of-a-configuration-option-91708f3366afd4c6.yaml new file mode 100644 index 0000000000..f85c6cbe65 --- /dev/null +++ b/releasenotes/notes/update-value-of-a-configuration-option-91708f3366afd4c6.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Update ``kernel_append_params`` to match the ``[pxe]`` configuration, + addressing a TODO from the Xena release.