9f7159c1bb
While testing glance + swift, I noticed that the glance-api.conf and glance-registry.conf being dropped had incorrect auth_uri / identity_uri values set. This change updates auth_uri / identity_uri throughout to point to the correct keystone_service_adminuri / keystone_service_internalurl variables. Change-Id: I3cbbfefe7da54b08bb9a55e4a2ca3a8bd786577d Closes-Bug: 1425099
17 lines
511 B
Django/Jinja
17 lines
511 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[DEFAULT]
|
|
verbose = {{ verbose }}
|
|
debug = {{ debug }}
|
|
admin_password = {{ glance_service_password }}
|
|
admin_user = glance
|
|
admin_tenant_name = service
|
|
use_syslog = False
|
|
image_cache_dir = {{ glance_system_user_home }}/cache/
|
|
image_cache_stall_time = 86400
|
|
image_cache_max_size = {{ glance_image_cache_max_size }}
|
|
registry_host = {{ glance_registry_host }}
|
|
registry_port = 9191
|
|
auth_url = {{ keystone_service_internalurl }}
|
|
filesystem_store_datadir = {{ glance_system_user_home }}/images/
|