Fix murano authentication configuration options
Murano failed to deploy due to outdated options - it tried to issue v2.0 Keystone requests instead of v3. With new options that are similar to other projects deployment succeeds. Change-Id: I1970641e47fa6f94c2c6427ef49b3160d64c33ed Closes-Bug: #1750373
This commit is contained in:
parent
96ede1eb55
commit
78b8927874
@ -17,17 +17,15 @@ engine_workers = {{ openstack_service_workers }}
|
|||||||
connection = mysql+pymysql://{{ murano_database_user }}:{{ murano_database_password }}@{{ murano_database_address }}/{{ murano_database_name }}
|
connection = mysql+pymysql://{{ murano_database_user }}:{{ murano_database_password }}@{{ murano_database_address }}/{{ murano_database_name }}
|
||||||
max_retries = -1
|
max_retries = -1
|
||||||
|
|
||||||
[keystone]
|
|
||||||
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
||||||
|
|
||||||
[keystone_authtoken]
|
[keystone_authtoken]
|
||||||
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
||||||
auth_host = {{ kolla_internal_fqdn }}
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
||||||
auth_port = {{ keystone_public_port }}
|
auth_type = password
|
||||||
auth_protocol = {{ internal_protocol }}
|
project_domain_id = {{ default_project_domain_id }}
|
||||||
admin_tenant_name = service
|
user_domain_id = {{ default_user_domain_id }}
|
||||||
admin_user = {{ murano_keystone_user }}
|
project_name = service
|
||||||
admin_password = {{ murano_keystone_password }}
|
username = {{ murano_keystone_user }}
|
||||||
|
password = {{ murano_keystone_password }}
|
||||||
|
|
||||||
memcache_security_strategy = ENCRYPT
|
memcache_security_strategy = ENCRYPT
|
||||||
memcache_secret_key = {{ memcache_secret_key }}
|
memcache_secret_key = {{ memcache_secret_key }}
|
||||||
|
Loading…
Reference in New Issue
Block a user