From 54cf884fcb6c67aa23662846d03d888789114c8f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 8 Jul 2022 18:36:29 +0900 Subject: [PATCH] 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 --- README.md | 2 +- fixtures/scenario003.pp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7965275d3..8366dbed7 100644 --- a/README.md +++ b/README.md @@ -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 | | | | | diff --git a/fixtures/scenario003.pp b/fixtures/scenario003.pp index e14e2d90b..f7f771d15 100644 --- a/fixtures/scenario003.pp +++ b/fixtures/scenario003.pp @@ -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', }