-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
78 lines (70 loc) · 3.27 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[metadata]
name = neutron-lbaas
summary = OpenStack Networking Load Balancing as a Service
description-file =
README.rst
author = OpenStack
author-email = [email protected]
home-page = http://www.openstack.org/
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 :: 2
Programming Language :: Python :: 2.7
[files]
packages =
neutron_lbaas
data_files =
etc/neutron/rootwrap.d =
etc/neutron/rootwrap.d/lbaas-haproxy.filters
[global]
setup-hooks =
pbr.hooks.setup_hook
[entry_points]
console_scripts =
neutron-lbaas-agent = neutron_lbaas.services.loadbalancer.agent.agent:main
neutron-lbaasv2-agent = neutron_lbaas.agent.agent:main
device_drivers =
# These are for backwards compat with Juno loadbalancer service provider configuration values
neutron.services.loadbalancer.drivers.a10networks.driver_v1.ThunderDriver = neutron_lbaas.services.loadbalancer.drivers.a10networks.driver_v1:ThunderDriver
neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver = neutron_lbaas.services.loadbalancer.drivers.haproxy.plugin_driver:HaproxyOnHostPluginDriver
neutron.services.loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver = neutron_lbaas.services.loadbalancer.drivers.haproxy.namespace_driver:HaproxyNSDriver
neutron.services.loadbalancer.drivers.netscaler.netscaler_driver.NetScalerPluginDriver = neutron_lbaas.services.loadbalancer.drivers.netscaler.netscaler_driver:NetScalerPluginDriver
neutron.services.loadbalancer.drivers.radware.driver.LoadBalancerDriver = neutron_lbaas.services.loadbalancer.drivers.radware.driver:LoadBalancerDriver
loadbalancer_schedulers =
neutron_lbaas.agent_scheduler.ChanceScheduler = neutron_lbaas.agent_scheduler:ChanceScheduler
pool_schedulers =
neutron.services.loadbalancer.agent_scheduler.ChanceScheduler = neutron_lbaas.services.loadbalancer.agent_scheduler:ChanceScheduler
neutron.services.loadbalancer.agent_scheduler.LeastPoolAgentScheduler = neutron_lbaas.services.loadbalancer.agent_scheduler:LeastPoolAgentScheduler
neutron.service_plugins =
lbaasv2 = neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2
neutron.db.alembic_migrations =
neutron-lbaas = neutron_lbaas.db.migration:alembic_migrations
neutron_lbaas.cert_manager.backend =
barbican = neutron_lbaas.common.cert_manager.barbican_cert_manager
local = neutron_lbaas.common.cert_manager.local_cert_manager
oslo.config.opts =
neutron.lbaas = neutron_lbaas.opts:list_opts
neutron.lbaas.agent = neutron_lbaas.opts:list_agent_opts
neutron.lbaas.service = neutron_lbaas.opts:list_service_opts
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[extract_messages]
keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg
output_file = neutron-lbaas/locale/neutron-lbaas.pot
[compile_catalog]
directory = neutron-lbaas/locale
domain = neutron-lbaas
[update_catalog]
domain = neutron-lbaas
output_dir = neutron-lbaas/locale
input_file = neutron-lbaas/locale/neutron-lbaas.pot
[wheel]
universal = 1