Merge "Fix usage of keystone v3"
This commit is contained in:
commit
86bbcc41cf
@ -45,7 +45,7 @@ identity_uri = http://localhost:35357
|
|||||||
admin_tenant_name = service
|
admin_tenant_name = service
|
||||||
admin_user = barbican
|
admin_user = barbican
|
||||||
admin_password = orange
|
admin_password = orange
|
||||||
auth_version = v2.0
|
auth_version = v3.0
|
||||||
#delay failing perhaps to log the unauthorized request in barbican ..
|
#delay failing perhaps to log the unauthorized request in barbican ..
|
||||||
#delay_auth_decision = true
|
#delay_auth_decision = true
|
||||||
|
|
||||||
|
@ -4,16 +4,18 @@
|
|||||||
[identity]
|
[identity]
|
||||||
# Replace these with values that represent your identity configuration
|
# Replace these with values that represent your identity configuration
|
||||||
uri=http://localhost:5000/v2.0
|
uri=http://localhost:5000/v2.0
|
||||||
uri_v3=<None>
|
uri_v3=http://localhost:5000/v3
|
||||||
auth_version=v2
|
auth_version=v3
|
||||||
|
|
||||||
username=admin
|
username=admin
|
||||||
tenant_name=admin
|
tenant_name=admin
|
||||||
password=password
|
password=password
|
||||||
|
domain_name=Default
|
||||||
|
|
||||||
admin_username=admin
|
admin_username=admin
|
||||||
admin_tenant_name=admin
|
admin_tenant_name=admin
|
||||||
admin_password=password
|
admin_password=password
|
||||||
|
admin_domain_name=Default
|
||||||
|
|
||||||
[identity-feature-enabled]
|
[identity-feature-enabled]
|
||||||
# Leaving this as a placeholder
|
# Leaving this as a placeholder
|
||||||
|
@ -72,7 +72,8 @@ class BarbicanCredentials(auth.KeystoneV3Credentials):
|
|||||||
credentials = dict(
|
credentials = dict(
|
||||||
username=CONF.identity.admin_username,
|
username=CONF.identity.admin_username,
|
||||||
password=CONF.identity.admin_password,
|
password=CONF.identity.admin_password,
|
||||||
project_name=CONF.identity.admin_tenant_name
|
project_name=CONF.identity.admin_tenant_name,
|
||||||
|
domain_name=CONF.identity.admin_domain_name,
|
||||||
)
|
)
|
||||||
|
|
||||||
super(BarbicanCredentials, self).__init__(**credentials)
|
super(BarbicanCredentials, self).__init__(**credentials)
|
||||||
|
Loading…
Reference in New Issue
Block a user