4b9d9ad781
The keystone_auth section has changed for Mitaka. The Liberty format ,which is currently being used, is incompatible with keystone v3 on Mitaka as it assumes the id of the default domain is default where as in Mitaka it is a uuid. The install documentation for Mitaka dictates that domain name should be used rather than id when setting project_domain and user_domain Change-Id: Ie4d20a7287b7baca104996999ac8d333976ab752 Partial-Bug: 1571347
28 lines
555 B
Plaintext
28 lines
555 B
Plaintext
[DEFAULT]
|
|
verbose = {{ verbose }}
|
|
use_syslog = {{ use_syslog }}
|
|
debug = {{ debug }}
|
|
workers = {{ workers }}
|
|
|
|
bind_host = {{ bind_host }}
|
|
bind_port = 9191
|
|
log_file = /var/log/glance/registry.log
|
|
backlog = 4096
|
|
api_limit_max = 1000
|
|
limit_param_default = 25
|
|
|
|
{% if registry_config_flags -%}
|
|
{% for key, value in registry_config_flags.iteritems() -%}
|
|
{{ key }} = {{ value }}
|
|
{% endfor -%}
|
|
{% endif -%}
|
|
|
|
{% include "section-keystone-authtoken-mitaka" %}
|
|
|
|
{% if auth_host -%}
|
|
[paste_deploy]
|
|
flavor = keystone
|
|
{% endif %}
|
|
|
|
{% include "parts/section-database" %}
|