Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kayobe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kayobe
Commits
5697bf56
Commit
5697bf56
authored
4 years ago
by
Zuul
Committed by
Gerrit Code Review
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Support extra kernel options specified as strings instead of lists"
parents
32737570
1c850711
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ansible/roles/kolla-bifrost/templates/bifrost.yml.j2
+2
-2
2 additions, 2 deletions
ansible/roles/kolla-bifrost/templates/bifrost.yml.j2
releasenotes/notes/extra-kernel-options-strings-bec7d851e334fec5.yaml
+4
-0
4 additions, 0 deletions
.../notes/extra-kernel-options-strings-bec7d851e334fec5.yaml
with
6 additions
and
2 deletions
ansible/roles/kolla-bifrost/templates/bifrost.yml.j2
+
2
−
2
View file @
5697bf56
...
...
@@ -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 | join(' ') }}"
extra_kernel_options: "{{ kolla_bifrost_extra_kernel_options
if kolla_bifrost_extra_kernel_options is string else kolla_bifrost_extra_kernel_options
| join(' ') }}"
{% endif %}
# IP address range for DHCP.
...
...
@@ -40,7 +40,7 @@ inspector_port_addition: "{{ kolla_bifrost_inspector_port_addition }}"
{% if kolla_bifrost_inspector_extra_kernel_options %}
# Extra kernel parameters for the inspector default PXE configuration.
inspector_extra_kernel_options: "{{ kolla_bifrost_inspector_extra_kernel_options | join(' ') }}"
inspector_extra_kernel_options: "{{ kolla_bifrost_inspector_extra_kernel_options
if kolla_bifrost_inspector_extra_kernel_options is string else kolla_bifrost_inspector_extra_kernel_options
| join(' ') }}"
{% endif %}
# Whether to download Ironic Python Agent (IPA) images.
...
...
This diff is collapsed.
Click to expand it.
releasenotes/notes/extra-kernel-options-strings-bec7d851e334fec5.yaml
0 → 100644
+
4
−
0
View file @
5697bf56
---
features
:
-
|
Supports extra kernel options specified as strings instead of lists.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment