
The stein version of python-oslo.messaging (9.0.0+) has removed the following config options from the [oslo_messaging_rabbit] section: rabbit_host, rabbit_port, rabbit_hosts, rabbit_userid, rabbit_password, rabbit_virtual_host rabbit_max_retries, and rabbit_durable_queues. The above change requires a sync from charm-helpers. Additionally the transport_url directive has been moved to the [DEFAULT] section. These have been deprecated since Ocata, therefore this change will be provided to pre-Stein templates in order to drop deprecation warnings. See release notes at: https://docs.openstack.org/releasenotes/oslo.messaging/index.html Change-Id: I77e3437a5241c9ded2ef5000639f984222bc4803 Closes-Bug: #1817672
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
# kilo
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
# Config managed by neutron-openvswitch charm
|
|
# Service restart triggered by remote application: {{ restart_trigger }}
|
|
# {{ restart_trigger_neutron }}
|
|
###############################################################################
|
|
[DEFAULT]
|
|
verbose = {{ verbose }}
|
|
debug = {{ debug }}
|
|
use_syslog = {{ use_syslog }}
|
|
state_path = /var/lib/neutron
|
|
bind_host = 0.0.0.0
|
|
bind_port = 9696
|
|
{% if network_device_mtu -%}
|
|
network_device_mtu = {{ network_device_mtu }}
|
|
{% endif -%}
|
|
{% if core_plugin -%}
|
|
core_plugin = {{ core_plugin }}
|
|
{% endif -%}
|
|
{% if transport_url %}
|
|
transport_url = {{ transport_url }}
|
|
{% endif %}
|
|
|
|
api_paste_config = /etc/neutron/api-paste.ini
|
|
auth_strategy = keystone
|
|
rpc_response_timeout = {{ rpc_response_timeout }}
|
|
|
|
{% include "section-zeromq" %}
|
|
|
|
{% include "section-oslo-messaging-rabbit" %}
|
|
|
|
{% include "section-oslo-notifications" %}
|
|
|
|
[QUOTAS]
|
|
|
|
[DEFAULT_SERVICETYPE]
|
|
|
|
[AGENT]
|
|
root_helper = sudo neutron-rootwrap /etc/neutron/rootwrap.conf
|
|
report_interval = {{ report_interval }}
|
|
|
|
[keystone_authtoken]
|
|
signing_dir = /var/lib/neutron/keystone-signing
|
|
|
|
[oslo_concurrency]
|
|
lock_path = $state_path/lock
|