~james-page/charms/trusty/nova-compute/disable-neutron-security-option

« back to all changes in this revision

Viewing changes to templates/havana/neutron.conf

  • Committer: James Page
  • Date: 2013-10-15 12:04:13 UTC
  • mfrom: (46.1.83 nova-compute)
  • Revision ID: james.page@canonical.com-20131015120413-grclbw2ot5gbgp5r
Update of all Havana / Saucy / python-redux work:

* Full python rewrite using new OpenStack charm-helpers.

* Test coverage

* Havana support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# grizzly
 
2
###############################################################################
 
3
# [ WARNING ]
 
4
# Configuration file maintained by Juju. Local changes may be overwritten.
 
5
###############################################################################
 
6
[DEFAULT]
 
7
state_path = /var/lib/neutron
 
8
lock_path = $state_path/lock
 
9
bind_host = 0.0.0.0
 
10
bind_port = 9696
 
11
 
 
12
{% if core_plugin -%}
 
13
core_plugin =  {{ core_plugin }}
 
14
{% endif -%}
 
15
 
 
16
api_paste_config = /etc/neutron/api-paste.ini
 
17
auth_strategy = keystone
 
18
notification_driver = neutron.openstack.common.notifier.rpc_notifier
 
19
default_notification_level = INFO
 
20
notification_topics = notifications
 
21
 
 
22
{% if rabbitmq_host -%}
 
23
rabbit_host = {{ rabbitmq_host }}
 
24
rabbit_userid = {{ rabbitmq_user }}
 
25
rabbit_password = {{ rabbitmq_password }}
 
26
rabbit_virtual_host = {{ rabbitmq_virtual_host }}
 
27
{% endif -%}
 
28
 
 
29
 
 
30
[QUOTAS]
 
31
 
 
32
[DEFAULT_SERVICETYPE]
 
33
 
 
34
[AGENT]
 
35
root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf
 
36
 
 
37
[keystone_authtoken]
 
38
signing_dir = /var/lib/neutron/keystone-signing
 
39