90f862ce25
With support for multiple subnets in Ironic Inspector dnsmasq a new parameter 'dnsmasq_ip_subnets' was added. With this new parameter the 'dnsmasq_ip_range' is redundant and should be deprecated. Change-Id: I07cbdd5e5573df23d6bdbfff4588cd870be933d9
34 lines
1.3 KiB
YAML
34 lines
1.3 KiB
YAML
---
|
|
features:
|
|
- |
|
|
Assigning additional subnets allow dnsmasq to serve dhcp request that came
|
|
in via dhcp relay/helper. New parameter 'dnsmasq_ip_subnets' enable
|
|
configuration of dhcp-range and dhcp-option 'option:router' for multiple
|
|
subnets in dnsmasq.
|
|
|
|
Example::
|
|
|
|
$dnsmasq_ip_subnets = [{'ip_range' => '192.168.0.100,192.168.0.120'},
|
|
{'tag' => 'subnet1',
|
|
'ip_range' => '192.168.1.100,192.168.1.200',
|
|
'netmask' => '255.255.255.0',
|
|
'gateway' => '192.168.1.254'},
|
|
{'tag' => 'subnet2',
|
|
'ip_range' => '192.168.2.100,192.168.2.200',
|
|
'netmask' => '255.255.255.0',
|
|
'gateway' => '192.168.2.254'}]
|
|
|
|
deprecations:
|
|
- The "ironic::inspector::dnsmasq_ip_range" parameter was deprecated in favor
|
|
of "ironic::inspector::dnsmasq_ip_subnets"
|
|
upgrade:
|
|
- |
|
|
Replace usage of "ironic::inspector::dnsmasq_ip_range" with
|
|
"ironic::inspector::dnsmasq_ip_subnets". For example, if you have::
|
|
|
|
$dnsmasq_ip_range = '192.168.0.100,192.168.0.120'
|
|
|
|
replace with::
|
|
|
|
$dnsmasq_ip_subnets = [{'ip_range' => '192.168.0.100,192.168.0.120'}]
|