Advertisement
Guest User

quantum.conf

a guest
Aug 7th, 2013
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. # LOGGGING & STATE
  4. default_notification_level = INFO
  5. notification_topics = notifications
  6. debug = False
  7. verbose = False
  8. state_path = /var/lib/quantum
  9. lock_path = $state_path/lock
  10.  
  11. # API
  12. bind_host = 0.0.0.0
  13. bind_port = 9696
  14. api_paste_config = api-paste.ini
  15.  
  16. # EXTENTIONS & PLUGINS
  17. #api_extensions_path =
  18. core_plugin = quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2
  19. service_plugins = quantum.plugins.services.agent_loadbalancer.plugin.LoadBalancerPlugin
  20. interface_driver = quantum.agent.linux.interface.OVSInterfaceDriver
  21. device_driver = quantum.plugins.services.agent_loadbalancer.drivers.haproxy.namespace_driver.HaproxyNSDriver
  22. ovs_use_veth = True
  23.  
  24. # RABBITMQ
  25. control_exchange = quantum
  26. rabbit_host = 10.128.2.11
  27. rabbit_port = 5672
  28. notification_driver = quantum.openstack.common.notifier.rpc_notifier
  29. rpc_backend = quantum.openstack.common.rpc.impl_kombu
  30.  
  31. # AUTHENTICATION
  32. auth_strategy = keystone
  33. [keystone_authtoken]
  34. auth_host = 10.128.2.11
  35. auth_port = 35357
  36. auth_protocol = http
  37. signing_dir = /var/lib/quantum/keystone-signing
  38. admin_tenant_name = service
  39. admin_user = quantum
  40. admin_password = quantum
  41.  
  42. [QUOTAS]
  43. # resource name(s) that are supported in quota features
  44. # quota_items = network,subnet,port
  45.  
  46. # default number of resource allowed per tenant, minus for unlimited
  47. # default_quota = -1
  48.  
  49. # number of networks allowed per tenant, and minus means unlimited
  50. # quota_network = 10
  51. #
  52. # number of subnets allowed per tenant, and minus means unlimited
  53. # quota_subnet = 10
  54.  
  55. # number of ports allowed per tenant, and minus means unlimited
  56. # quota_port = 50
  57.  
  58. # number of security groups allowed per tenant, and minus means unlimited
  59. # quota_security_group = 10
  60.  
  61. # number of security group rules allowed per tenant, and minus means unlimited
  62. # quota_security_group_rule = 100
  63. # default driver to use for quota checks
  64. # quota_driver = quantum.quota.ConfDriver
  65.  
  66. [DEFAULT_SERVICETYPE]
  67. # Description of the default service type (optional)
  68. # description = "default service type"
  69. # Enter a service definition line for each advanced service provided
  70. # by the default service type.
  71. # Each service definition should be in the following format:
  72. # <service>:<plugin>[:driver]
  73.  
  74. [AGENT]
  75. # Use "sudo quantum-rootwrap /etc/quantum/rootwrap.conf" to use the real
  76. # root filter facility.
  77. # Change to "sudo" to skip the filtering and just run the comand directly
  78. root_helper = sudo quantum-rootwrap /etc/quantum/rootwrap.conf
  79.  
  80. # =========== items for agent management extension =============
  81. # seconds between nodes reporting state to server, should be less than
  82. # agent_down_time
  83. # report_interval = 4
  84.  
  85. # =========== end of items for agent management extension =====
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement