ducnv95

neutron.conf.j2

Oct 7th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. [DEFAULT]
  2. core_plugin = ml2
  3. service_plugins =
  4. auth_strategy = keystone
  5. notify_nova_on_port_status_changes = True
  6. notify_nova_on_port_data_changes = True
  7. allow_overlapping_ips = True
  8. rpc_backend = rabbit
  9. dhcp_agents_per_network = 2
  10.  
  11. [agent]
  12.  
  13. [cors]
  14.  
  15. [cors.subdomain]
  16.  
  17. [database]
  18. connection = mysql+pymysql://neutron:{{ PASS_DATABASE_NEUTRON }}@{{ IP_VIP_API }}/neutron
  19.  
  20. [keystone_authtoken]
  21. auth_uri = http://{{ IP_VIP_API }}:5000
  22. auth_url = http://{{ IP_VIP_API }}:35357
  23. memcached_servers = {{ CTL1_IP_NIC1 }}:11211,{{ CTL2_IP_NIC1 }}:11211,{{ CTL3_IP_NIC1 }}:11211
  24. auth_type = password
  25. project_domain_name = Default
  26. user_domain_name = Default
  27. project_name = service
  28. username = neutron
  29. password = {{ NEUTRON_PASS }}
  30. [matchmaker_redis]
  31.  
  32. [nova]
  33. auth_url = http://{{ IP_VIP_API }}:35357
  34. auth_type = password
  35. project_domain_name = Default
  36. user_domain_name = Default
  37. region_name = RegionOne
  38. project_name = service
  39. username = nova
  40. password = {{ NOVA_PASS }}
  41.  
  42. [oslo_concurrency]
  43. lock_path = /var/lib/neutron/tmp
  44.  
  45. [oslo_messaging_amqp]
  46.  
  47. [oslo_messaging_notifications]
  48.  
  49. [oslo_messaging_rabbit]
  50. rabbit_hosts = {{ MQ1_IP_NIC1 }}:5672,{{ MQ2_IP_NIC1 }}:5672,{{ MQ3_IP_NIC1 }}:5672
  51. rabbit_ha_queues = true
  52. rabbit_retry_interval = 1
  53. rabbit_retry_backoff = 2
  54. rabbit_max_retries = 0
  55. rabbit_durable_queues = true
  56. rabbit_userid = openstack
  57. rabbit_password = {{ RABBIT_PASS }}
  58.  
  59. [oslo_messaging_zmq]
  60. [oslo_middleware]
  61. [oslo_policy]
  62. [qos]
  63. [quotas]
  64.  
  65. [ssl]
Add Comment
Please, Sign In to add comment