3bfcfb5a0a
Rejig templates to use includes, add Postgresql context for neutron and quantum config files.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# grizzly
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
###############################################################################
|
|
[DEFAULT]
|
|
state_path = /var/lib/quantum
|
|
lock_path = $state_path/lock
|
|
bind_host = 0.0.0.0
|
|
{% if neutron_bind_port -%}
|
|
bind_port = {{ neutron_bind_port }}
|
|
{% else -%}
|
|
bind_port = 9696
|
|
{% endif -%}
|
|
{% if core_plugin -%}
|
|
core_plugin = {{ core_plugin }}
|
|
{% endif -%}
|
|
api_paste_config = /etc/quantum/api-paste.ini
|
|
auth_strategy = keystone
|
|
control_exchange = quantum
|
|
notification_driver = quantum.openstack.common.notifier.rpc_notifier
|
|
default_notification_level = INFO
|
|
notification_topics = notifications
|
|
|
|
{% include "parts/database" %}
|
|
|
|
{% include "parts/rabbitmq" %}
|
|
|
|
{% if neutron_security_groups -%}
|
|
allow_overlapping_ips = True
|
|
{% endif -%}
|
|
|
|
[QUOTAS]
|
|
quota_driver = quantum.db.quota_db.DbQuotaDriver
|
|
{% if neutron_security_groups -%}
|
|
quota_items = network,subnet,port,security_group,security_group_rule
|
|
{% endif -%}
|
|
|
|
[DEFAULT_SERVICETYPE]
|
|
|
|
[AGENT]
|
|
root_helper = sudo quantum-rootwrap /etc/quantum/rootwrap.conf
|
|
|
|
[keystone_authtoken]
|
|
# auth_token middleware currently set in /etc/quantum/api-paste.ini
|