From a13bc5504278346154fa5205683cf2bc64977b14 Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Wed, 7 Aug 2019 13:50:21 +0100 Subject: [PATCH] Use default BGP speaker driver in bgp_dragent.ini In the Stein release, neutron-dynamic-routing switched from using ryu to os-ken (a fork of ryu). The config option bgp_speaker_driver [1] is currently set in kolla-ansible to use the ryu driver, but this is not included in the image due to it being removed from neutron-dynamic-routing's requirements.txt. This change uses the os-ken driver for bgp_speaker_driver, since this package is included in the image. [1] https://docs.openstack.org/neutron-dynamic-routing/latest/contributor/dragent-drivers.html#bgp-driver Change-Id: I76ad84c6b963818208f080ebeb054b2553ff40af Closes-Bug: #1839165 --- ansible/roles/neutron/templates/bgp_dragent.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/neutron/templates/bgp_dragent.ini.j2 b/ansible/roles/neutron/templates/bgp_dragent.ini.j2 index 89ffbe45ac..c7dda9b670 100644 --- a/ansible/roles/neutron/templates/bgp_dragent.ini.j2 +++ b/ansible/roles/neutron/templates/bgp_dragent.ini.j2 @@ -1,3 +1,3 @@ [BGP] -bgp_speaker_driver = neutron_dynamic_routing.services.bgp.agent.driver.ryu.driver.RyuBgpDriver +bgp_speaker_driver = neutron_dynamic_routing.services.bgp.agent.driver.os_ken.driver.OsKenBgpDriver bgp_router_id = {{ neutron_bgp_router_id }}