Neutron: Stop testing linuxbridge mechanism driver

Neutron team decided to make the driver experimental and it won't be
actively maintained.

This change switches the mechanism driver used in the scenario 003 job
from linuxbridge driver to ovn driver, to use only maintained drivers.

Depends-on: https://review.opendev.org/845181
Change-Id: I06641daa4c5e9ecce894cd68d18f165554b8269d
This commit is contained in:
Takashi Kajinami 2022-07-08 18:36:29 +09:00
parent d1c02c5390
commit 54cf884fcb
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ scenario](#all-in-one).
| glance | | rbd | swift | file | swift+rgw | file | file |
| nova | | rbd | X | X | rbd | X | X |
| placement | | X | X | X | X | X | X |
| neutron | | ovs | ovs | linuxbridge | ovs | ovn | ovs |
| neutron | | ovs | ovs | ovn | ovs | ovn | ovs |
| cinder | | rbd | iscsi | | | | iscsi |
| ceilometer | | X | X | | | | |
| aodh | | X | X | | | | |

View File

@ -76,7 +76,7 @@ include openstack_integration::keystone
include openstack_integration::glance
class { 'openstack_integration::neutron':
driver => 'linuxbridge',
driver => 'ovn',
}
include openstack_integration::placement
include openstack_integration::nova
@ -118,5 +118,5 @@ class { 'openstack_integration::tempest':
# run it when instances does not have internet acces to
# deploy for example Docker.
magnum => false,
neutron_driver => 'linuxbridge',
neutron_driver => 'ovn',
}