summaryrefslogtreecommitdiff
path: root/osconf/neutron/neutron.conf-controller
blob: d611276c59d7e64e25d0d5736a8c6ea077466bab (plain)
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
[DEFAULT]

state_path = /var/lib/neutron
lock_path = $state_path/lock
use_syslog = True


rabbit_host={{ RABBITMQ_HOST }}
rabbit_port={{ RABBITMQ_PORT }}
rabbit_userid={{ RABBITMQ_USER }}
rabbit_password={{ RABBITMQ_PASSWORD }}
notification_driver=neutron.openstack.common.notifier.rpc_notifier
rpc_backend=rabbit

auth_strategy = keystone


core_plugin = ml2
service_plugins = router
allow_overlapping_ips = True


notify_nova_on_port_status_changes = True
notify_nova_on_port_data_changes = True
nova_url = http://{{ CONTROLLER_HOST_ADDRESS  }}:8774/v2
nova_region_name = regionOne
nova_admin_username = {{ NOVA_SERVICE_USER }}
nova_admin_tenant_id = {{ SERVICE_TENANT_ID }}
nova_admin_password = {{ NOVA_SERVICE_PASSWORD }}
nova_admin_auth_url = http://{{ CONTROLLER_HOST_ADDRESS }}:35357/v2.0

## Don't know

api_paste_config = api-paste.ini
[service_providers]
service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
service_provider=VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default


[agent]
root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf

###

[database]
connection=postgresql://{{ NEUTRON_DB_USER }}:{{ NEUTRON_DB_PASSWORD }}@{{ CONTROLLER_HOST_ADDRESS }}/neutron

[keystone_authtoken]
auth_uri =  http://{{ CONTROLLER_HOST_ADDRESS }}:5000/v2.0
identity_uri  =  http://{{ CONTROLLER_HOST_ADDRESS }}:35357
admin_tenant_name = service
admin_user = {{ NEUTRON_SERVICE_USER }}
admin_password = {{ NEUTRON_SERVICE_PASSWORD }}