802f607b8c
Ensure that the keystone admin endpoint is used for calls to keystone, resolving issues when the public ep is not network accessible from the neutron-gateway units. Change-Id: I79a1183e7eddd4981367baf4a22fe2ec6374b0b9 Closes-Bug: 1756111
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
###############################################################################
|
|
[DEFAULT]
|
|
logdir=/var/log/nova
|
|
state_path=/var/lib/nova
|
|
lock_path=/var/lock/nova
|
|
root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
|
|
debug = {{ debug }}
|
|
verbose= {{ verbose }}
|
|
use_syslog = {{ use_syslog }}
|
|
api_paste_config=/etc/nova/api-paste.ini
|
|
enabled_apis=metadata
|
|
multi_host=True
|
|
neutron_metadata_proxy_shared_secret={{ shared_secret }}
|
|
service_neutron_metadata_proxy=True
|
|
metadata_workers = {{ workers }}
|
|
# Access to message bus
|
|
{% include "parts/rabbitmq" %}
|
|
# Access to neutron API services
|
|
network_api_class=nova.network.neutronv2.api.API
|
|
neutron_auth_strategy=keystone
|
|
neutron_url={{ quantum_url }}
|
|
neutron_admin_tenant_name={{ service_tenant }}
|
|
neutron_admin_username={{ service_username }}
|
|
neutron_admin_password={{ service_password }}
|
|
neutron_admin_auth_url={{ auth_protocol }}://{{ keystone_host }}:{{ auth_port }}/v2.0
|