From 1a0077705f16c4132e0ab96fdf2aa038c54a9bbd Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 25 Oct 2022 13:01:56 +0200 Subject: [PATCH] Enable experimental execution of LXB if required In cases when neutron_plugin_type is set to ml2.lxb we should explicitly enable execution of LXB since it's experimental faeature starting Zed. Change-Id: If4d4250528e39ba4c9f11713088fc2412ab9e5db --- templates/neutron.conf.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/neutron.conf.j2 b/templates/neutron.conf.j2 index 8aae17f5..d3292e79 100644 --- a/templates/neutron.conf.j2 +++ b/templates/neutron.conf.j2 @@ -107,6 +107,12 @@ notify_nova_on_port_data_changes = True send_events_interval = 2 # End of [DEFAULT] section + +{% if neutron_plugin_type == 'ml2.lxb' %} +[experimental] +linuxbridge = True +{% endif %} + {% if neutron_designate_enabled %} [designate]