cb978dc244
This patch creates a new driver using NB DB information instead of SB DB. This has 2 objective: - Alleviate the stress on big scale environment due to many connections to the SB DBs. - Being more future proof as content generated in the SB DBs based on NB DB information is subject to change. For example we were already adviced that the information we are currently using for ovn LB events at the SB DB is probably going to change soon. Depends-On: https://review.opendev.org/c/openstack/ovsdbapp/+/873853 Change-Id: Ib6bf077ce1e354652f5b728bd7192c762d3d071b
45 lines
1.6 KiB
INI
45 lines
1.6 KiB
INI
[metadata]
|
|
name = ovn-bgp-agent
|
|
summary = The OVN BGP Agent allows to expose VMs/Containers/Networks through BGP on OVN
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-discuss@lists.openstack.org
|
|
home-page = https://www.openstack.org/
|
|
python-requires = >=3.6
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
[files]
|
|
packages =
|
|
ovn_bgp_agent
|
|
data_files =
|
|
etc/ovn-bgp-agent =
|
|
etc/ovn-bgp-agent/rootwrap.conf
|
|
etc/ovn-bgp-agent/rootwrap.d = etc/ovn-bgp-agent/rootwrap.d/*
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
ovn-bgp-agent = ovn_bgp_agent.cmd.agent:start
|
|
ovn-bgp-agent-rootwrap = oslo_rootwrap.cmd:main
|
|
ovn-bgp-agent-rootwrap-daemon = oslo_rootwrap.cmd:daemon
|
|
|
|
ovn_bgp_agent.drivers =
|
|
ovn_bgp_driver = ovn_bgp_agent.drivers.openstack.ovn_bgp_driver:OVNBGPDriver
|
|
nb_ovn_bgp_driver = ovn_bgp_agent.drivers.openstack.nb_ovn_bgp_driver:NBOVNBGPDriver
|
|
ovn_evpn_driver = ovn_bgp_agent.drivers.openstack.ovn_evpn_driver:OVNEVPNDriver
|
|
ovn_stretched_l2_bgp_driver = ovn_bgp_agent.drivers.openstack.ovn_stretched_l2_bgp_driver:OVNBGPStretchedL2Driver
|
|
|
|
oslo.config.opts =
|
|
ovnbgpagent = ovn_bgp_agent.config:list_opts
|