Fix keystone authentication

Changes project_domain_id and user_domain_id to *_name in manila-plugin endpoint

Closes-Bug: #1911424
Change-Id: Ia289d4899e3e802197853a61e8e36b7ad87d0fd8
This commit is contained in:
Gustavo Sanchez 2021-08-13 11:38:22 -04:00
parent e7ed915d2b
commit 2511bce6b7
No known key found for this signature in database
GPG Key ID: CB6FDA23F1075685
1 changed files with 2 additions and 2 deletions

View File

@ -71,9 +71,9 @@ def share_to_manila_plugins_auth():
data = {
'username': keystone.service_username(),
'password': keystone.service_password(),
'project_domain_id': 'default',
'project_domain_name': keystone.service_domain(),
'project_name': 'services',
'user_domain_id': 'default',
'user_domain_name': keystone.service_domain(),
'auth_uri': ("{protocol}://{host}:{port}"
.format(protocol=keystone.service_protocol(),
host=keystone.service_host(),