Set default deploy/rescue kernel/ramdisk in ironic.conf

Most likely people will use the kernel/ramdisk we provide, let's set
the defaults.

Change-Id: Ia7a2698344f8f1a14356dbfe9cd68ce667019606
This commit is contained in:
Dmitry Tantsur 2020-06-05 16:40:12 +02:00
parent b33401b46c
commit 0477e45cd9
3 changed files with 9 additions and 3 deletions

View File

@ -67,6 +67,10 @@ fast_track = {{ fast_track }}
[conductor]
clean_nodes = {{ cleaning | lower }}
automated_clean = {{ cleaning | lower }}
deploy_kernel = {{ ipa_kernel_url }}
deploy_ramdisk = {{ ipa_ramdisk_url }}
rescue_kernel = {{ ipa_kernel_url }}
rescue_ramdisk = {{ ipa_ramdisk_url }}
[database]
connection = mysql+pymysql://{{ ironic.database.username }}:{{ ironic.database.password }}@{{ ironic.database.host }}/{{ ironic.database.name }}?charset=utf8

View File

@ -51,6 +51,3 @@
properties: "{{ properties | default({}) }}"
driver_info:
power: "{{ driver_info.power }}"
deploy:
deploy_kernel: "{{ ipa_kernel_url }}"
deploy_ramdisk: "{{ ipa_ramdisk_url }}"

View File

@ -0,0 +1,5 @@
---
features:
- |
Configures the default deploy and rescue kernel/ramdisk, setting them
in ``driver_info`` is now optional.