Rename agent_loadbalancer directory to loadbalancer
Fix missing path changes Fixes bug 1179276 Change-Id: I889eeac8013de67fccbac9bfa745a56e7f859756
This commit is contained in:
parent
a36f2373d2
commit
358975281f
@ -20,7 +20,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
sys.path.insert(0, os.getcwd())
|
sys.path.insert(0, os.getcwd())
|
||||||
|
|
||||||
from quantum.plugins.services.agent_loadbalancer.drivers.haproxy.agent import main
|
from quantum.services.loadbalancer.drivers.haproxy.agent import main
|
||||||
|
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
@ -17,7 +17,7 @@ interface_driver = quantum.agent.linux.interface.OVSInterfaceDriver
|
|||||||
|
|
||||||
# The agent requires a driver to manage the loadbalancer. HAProxy is the
|
# The agent requires a driver to manage the loadbalancer. HAProxy is the
|
||||||
# opensource version.
|
# opensource version.
|
||||||
device_driver = quantum.plugins.services.agent_loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver
|
#device_driver = quantum.services.loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver
|
||||||
|
|
||||||
# Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
|
# Allow overlapping IP (Must have kernel build with CONFIG_NET_NS=y and
|
||||||
# iproute2 package that supports namespaces).
|
# iproute2 package that supports namespaces).
|
||||||
|
@ -322,4 +322,4 @@ signing_dir = /var/lib/quantum/keystone-signing
|
|||||||
# ==================================================================================================
|
# ==================================================================================================
|
||||||
# driver_fqn is the fully qualified name of the lbaas driver that will be loaded by the lbass plugin
|
# driver_fqn is the fully qualified name of the lbaas driver that will be loaded by the lbass plugin
|
||||||
# ==================================================================================================
|
# ==================================================================================================
|
||||||
#driver_fqn = quantum.plugins.services.agent_loadbalancer.drivers.noop.noop_driver.NoopLbaaSDriver
|
#driver_fqn = quantum.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver
|
||||||
|
@ -36,6 +36,8 @@ NS_PREFIX = 'qlbaas-'
|
|||||||
OPTS = [
|
OPTS = [
|
||||||
cfg.StrOpt(
|
cfg.StrOpt(
|
||||||
'device_driver',
|
'device_driver',
|
||||||
|
default=('quantum.services.loadbalancer.drivers'
|
||||||
|
'.haproxy.namespace_driver.HaproxyNSDriver'),
|
||||||
help=_('The driver used to manage the loadbalancing device'),
|
help=_('The driver used to manage the loadbalancing device'),
|
||||||
),
|
),
|
||||||
cfg.StrOpt(
|
cfg.StrOpt(
|
||||||
|
@ -75,7 +75,7 @@ console_scripts =
|
|||||||
quantum-dhcp-agent-dnsmasq-lease-update = quantum.agent.linux.dhcp:Dnsmasq.lease_update
|
quantum-dhcp-agent-dnsmasq-lease-update = quantum.agent.linux.dhcp:Dnsmasq.lease_update
|
||||||
quantum-hyperv-agent = quantum.plugins.hyperv.agent.hyperv_quantum_agent:main
|
quantum-hyperv-agent = quantum.plugins.hyperv.agent.hyperv_quantum_agent:main
|
||||||
quantum-l3-agent = quantum.agent.l3_agent:main
|
quantum-l3-agent = quantum.agent.l3_agent:main
|
||||||
quantum-lbaas-agent = quantum.plugins.services.agent_loadbalancer.agent:main
|
quantum-lbaas-agent = quantum.services.loadbalancer.drivers.haproxy.agent:main
|
||||||
quantum-linuxbridge-agent = quantum.plugins.linuxbridge.agent.linuxbridge_quantum_agent:main
|
quantum-linuxbridge-agent = quantum.plugins.linuxbridge.agent.linuxbridge_quantum_agent:main
|
||||||
quantum-metadata-agent = quantum.agent.metadata.agent:main
|
quantum-metadata-agent = quantum.agent.metadata.agent:main
|
||||||
quantum-mlnx-agent = quantum.plugins.mlnx.agent.eswitch_quantum_agent:main
|
quantum-mlnx-agent = quantum.plugins.mlnx.agent.eswitch_quantum_agent:main
|
||||||
|
Loading…
Reference in New Issue
Block a user