Skip to content
Snippets Groups Projects
Commit 32737570 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Fix formatting of extra kernel options for Bifrost"

parents 57a33487 99f6adda
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ enabled_hardware_types: "{{ kolla_bifrost_enabled_hardware_types | join(',') }}" ...@@ -5,7 +5,7 @@ enabled_hardware_types: "{{ kolla_bifrost_enabled_hardware_types | join(',') }}"
{% if kolla_bifrost_extra_kernel_options %} {% if kolla_bifrost_extra_kernel_options %}
# List of extra kernel parameters for Bifrost's Ironic PXE configuration. # List of extra kernel parameters for Bifrost's Ironic PXE configuration.
# Default is empty. # Default is empty.
extra_kernel_options: "{{ kolla_bifrost_extra_kernel_options }}" extra_kernel_options: "{{ kolla_bifrost_extra_kernel_options | join(' ') }}"
{% endif %} {% endif %}
# IP address range for DHCP. # IP address range for DHCP.
......
---
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.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment