kolla-ansible/releasenotes/notes/ironic-inspector-multiple-ranges-b7c734d38b90c331.yaml
Bartosz Bezak 60b39ccd40 [release] Tidy up release notes for Zed
Change-Id: If98434d7941cf319b0689441827290791f596a04
2022-12-05 12:47:08 +01:00

28 lines
918 B
YAML

---
features:
- |
Adds support for multiple DHCP ranges in the Ironic Inspector DHCP server.
upgrade:
- |
Modifies the default lease time of the Ironic Inspector DHCP server to 10
minutes. This is small enough to use small pools of IP addresses for
inspection but gives more room for the inspection to succeed.
This default can be changed globally via
``ironic_dnsmasq_dhcp_default_lease_time`` variable or per range via
``lease_time`` parameter.
- |
Replaced ``ironic_dnsmasq_dhcp_range`` and
``ironic_dnsmasq_default_gateway`` in favour of
``ironic_dnsmasq_dhcp_ranges``.
For example, if you have::
ironic_dnsmasq_dhcp_range: "10.42.0.2,10.42.0.254,255.255.255.0"
ironic_dnsmasq_default_gateway: "10.42.0.1"
replace it with::
ironic_dnsmasq_dhcp_ranges:
- range: "10.42.0.2,10.42.0.254,255.255.255.0"
routers: "10.42.0.1"