Merge "Remove the deprecated enable_ironic_ipxe"

This commit is contained in:
Zuul 2022-10-04 14:21:23 +00:00 committed by Gerrit Code Review
commit c2cbf061b6
2 changed files with 7 additions and 2 deletions

View File

@ -270,8 +270,7 @@ ironic_api_workers: "{{ openstack_service_workers }}"
ironic_dnsmasq_interface: "{{ api_interface }}"
ironic_dnsmasq_dhcp_ranges:
ironic_dnsmasq_dhcp_default_lease_time: "10m"
# TODO(yoctozepto): Do not rely on deprecated enable_ironic_ipxe in Zed.
ironic_dnsmasq_serve_ipxe: "{{ enable_ironic_ipxe | default(\"yes\") }}"
ironic_dnsmasq_serve_ipxe: true
ironic_dnsmasq_boot_file: "{% if ironic_dnsmasq_serve_ipxe | bool %}undionly.kpxe{% else %}pxelinux.0{% endif %}"
ironic_dnsmasq_uefi_ipxe_boot_file: "snponly.efi"
ironic_cleaning_network:

View File

@ -0,0 +1,6 @@
---
upgrade:
- |
The deprecated ``enable_ironic_ipxe`` has been removed. The iPXE still
works by default and it can be disabled by setting the more-aptly-named
``ironic_dnsmasq_serve_ipxe`` to ``false``.