summaryrefslogtreecommitdiff
path: root/osconf/neutron/neutron.conf-compute
diff options
context:
space:
mode:
Diffstat (limited to 'osconf/neutron/neutron.conf-compute')
-rw-r--r--osconf/neutron/neutron.conf-compute42
1 files changed, 42 insertions, 0 deletions
diff --git a/osconf/neutron/neutron.conf-compute b/osconf/neutron/neutron.conf-compute
new file mode 100644
index 00000000..0fdcbcc7
--- /dev/null
+++ b/osconf/neutron/neutron.conf-compute
@@ -0,0 +1,42 @@
+[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
+
+
+## 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
+
+###
+
+
+[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 }}
+