Debian: no fwaas l3 extensions

Looks like fwaas extensions are making a bunch of functional tests fail
in Debian, probably because of issues in neutron-rpc-server. We disable
it here, at least temporarily, and for Debian only, so that we have a
working tempest run for Debian. This may be reverted later on once a
better solution is found.

Change-Id: I723bb97310dfb2a737ddcdb79caa2a02ef4e211b
This commit is contained in:
Thomas Goirand 2018-06-14 01:00:45 +02:00
parent 11a5e5815f
commit 85a3fa6a0a

View File

@ -207,10 +207,17 @@ class openstack_integration::neutron (
interface_driver => $driver,
debug => true,
}
class { '::neutron::agents::l3':
interface_driver => $driver,
debug => true,
extensions => 'fwaas',
if ($::os_package_type == 'debian') {
class { '::neutron::agents::l3':
interface_driver => $driver,
debug => true,
}
} else {
class { '::neutron::agents::l3':
interface_driver => $driver,
debug => true,
extensions => 'fwaas',
}
}
class { '::neutron::agents::dhcp':
interface_driver => $driver,