Restore bgpvpn tests

This fixes the skipped bgpvpn tempest tests so that the functionality
is tested in the integration jobs.

Change-Id: I2de028ddac3bd8683b092f9b59f0b7bc13be87a3
This commit is contained in:
Takashi Kajinami 2023-04-03 15:38:51 +09:00
parent ba117fa586
commit 58042b00f3

@ -246,13 +246,18 @@ class openstack_integration::tempest (
true => ['l2-gateway', 'l2gateway-connection'],
default => []
}
$neutron_bgpvpn_extensions = $bgpvpn ? {
true => ['bgpvpn'],
default => [],
}
$neutron_api_extensions_real = sort(
$neutron_base_extensions +
$neutron_agent_scheduler_extensions +
$neutron_l3_extensions +
$neutron_metering_extensions +
$neutron_l2gw_extensions
$neutron_l2gw_extensions +
$neutron_bgpvpn_extensions
)
}