Merge "Fix formatting of extra kernel options for Bifrost"

This commit is contained in:
Zuul 2021-03-26 19:31:34 +00:00 committed by Gerrit Code Review
commit 32737570c1
2 changed files with 7 additions and 1 deletions

View File

@ -5,7 +5,7 @@ enabled_hardware_types: "{{ kolla_bifrost_enabled_hardware_types | join(',') }}"
{% if kolla_bifrost_extra_kernel_options %}
# List of extra kernel parameters for Bifrost's Ironic PXE configuration.
# Default is empty.
extra_kernel_options: "{{ kolla_bifrost_extra_kernel_options }}"
extra_kernel_options: "{{ kolla_bifrost_extra_kernel_options | join(' ') }}"
{% endif %}
# IP address range for DHCP.

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes formatting of extra kernel options configured with
``kolla_bifrost_extra_kernel_options`` when passed to Bifrost. See `story
2008714 <https://storyboard.openstack.org/#!/story/2008714>`__ for details.