Add enable_default_router_(bfd|ecmp) option

... which were added during this cycle.

Depends-on: https://review.opendev.org/874797
Change-Id: Icc563fd7f167a337b98be3c651463e0091efafdb
This commit is contained in:
Takashi Kajinami 2024-03-08 15:35:33 +09:00
parent dbb441329f
commit 51a9db9e95
3 changed files with 37 additions and 0 deletions

View File

@ -230,6 +230,16 @@
# multicast packets only to ports connected to multicast routers.
# Defaults to $facts['os_service_default']
#
# [*enable_default_route_ecmp*]
# (Optional) Define the default value for enable_default_route_ecmp if not
# speficied on the router.
# Defaults to $facts['os_service_default']
#
# [*enable_default_route_bfd*]
# (Optional) Define the default value for enable_default_route_bfd if not
# speficied on the router.
# Defaults to $facts['os_service_default']
#
# DEPRECATED PARAMETERS
#
# [*ensure_vpnaas_package*]
@ -280,6 +290,8 @@ class neutron::server (
$igmp_flood = $facts['os_service_default'],
$igmp_flood_reports = $facts['os_service_default'],
$igmp_flood_unregistered = $facts['os_service_default'],
$enable_default_route_ecmp = $facts['os_service_default'],
$enable_default_route_bfd = $facts['os_service_default'],
# DEPRECATED PARAMETERS
Boolean $ensure_vpnaas_package = false,
) inherits neutron::params {
@ -343,6 +355,8 @@ the neutron::services::vpnaas class.")
'ovs/igmp_flood': value => $igmp_flood;
'ovs/igmp_flood_reports': value => $igmp_flood_reports;
'ovs/igmp_flood_unregistered': value => $igmp_flood_unregistered;
'DEFAULT/enable_default_route_ecmp': value => $enable_default_route_ecmp;
'DEFAULT/enable_default_route_bfd': value => $enable_default_route_bfd;
}
if $server_package {

View File

@ -0,0 +1,7 @@
---
features:
- |
The following parameters have been added to the ``neutron::server`` class.
- ``enable_default_route_bfd``
- ``enable_default_route_ecmp``

View File

@ -93,6 +93,8 @@ describe 'neutron::server' do
should contain_neutron_config('ovs/igmp_flood').with_value('<SERVICE DEFAULT>')
should contain_neutron_config('ovs/igmp_flood_reports').with_value('<SERVICE DEFAULT>')
should contain_neutron_config('ovs/igmp_flood_unregistered').with_value('<SERVICE DEFAULT>')
should contain_neutron_config('DEFAULT/enable_default_route_ecmp').with_value('<SERVICE DEFAULT>')
should contain_neutron_config('DEFAULT/enable_default_route_bfd').with_value('<SERVICE DEFAULT>')
end
context 'with manage_service as false' do
@ -358,6 +360,20 @@ describe 'neutron::server' do
end
end
context 'with default route options' do
before :each do
params.merge!({
:enable_default_route_ecmp => false,
:enable_default_route_bfd => false,
})
end
it 'configure neutron.conf' do
should contain_neutron_config('DEFAULT/enable_default_route_ecmp').with_value(false)
should contain_neutron_config('DEFAULT/enable_default_route_bfd').with_value(false)
end
end
context 'with VPNaaS package installation' do
before do
params.merge!(