Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. [DEFAULT]
  2. # Show debugging output in log (sets DEBUG log level output).
  3. # debug = False
  4.  
  5. # The LBaaS agent will resync its state with Neutron to recover from any
  6. # transient notification or rpc errors. The interval is number of
  7. # seconds between attempts.
  8. # periodic_interval = 10
  9.  
  10. # LBaas requires an interface driver be set. Choose the one that best
  11. # matches your plugin.
  12. # interface_driver =
  13.  
  14. # Example of interface_driver option for OVS based plugins (OVS, Ryu, NEC, NVP,
  15. # BigSwitch/Floodlight)
  16. # interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
  17.  
  18. # Use veth for an OVS interface or not.
  19. # Support kernels with limited namespace support
  20. # (e.g. RHEL 6.5) so long as ovs_use_veth is set to True.
  21. # ovs_use_veth = False
  22.  
  23. # Example of interface_driver option for LinuxBridge
  24. # interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
  25.  
  26. # The agent requires drivers to manage the loadbalancer. HAProxy is the opensource version.
  27. # Multiple device drivers reflecting different service providers could be specified:
  28. # device_driver = path.to.provider1.driver.Driver
  29. # device_driver = path.to.provider2.driver.Driver
  30. # Default is:
  31. device_driver = neutron.services.loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver
  32.  
  33. [haproxy]
  34. # Location to store config and state files
  35. # loadbalancer_state_path = $state_path/lbaas
  36.  
  37. # The user group
  38. # user_group = nogroup
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement