Identity Config - Role Tests Parity

1. Added Openstack Keystone Admin (OS-KSADM) parameter to Identity Config.py
2. Needed OS-KSADM as a config parameter to list all roles.

Change-Id: I9d3f157fd32853f8f275736bf94575456d4f4bc6
This commit is contained in:
Charles Kimpolo 2013-07-02 10:25:01 +02:00
parent 4683757904
commit 9c3806200a
2 changed files with 11 additions and 0 deletions

View File

@ -47,3 +47,11 @@ class IdentityTokenConfig(ConfigSectionInterface):
@property
def authentication_endpoint(self):
return self.get("authentication_endpoint")
class IdentityExtensionConfig(ConfigSectionInterface):
SECTION_NAME = 'extension_api'
@property
def openstack_keystone_admin(self):
return self.get("openstack_keystone_admin")

View File

@ -19,3 +19,6 @@ username=admin
password=password
tenant_name=admin
authentication_endpoint=http://111.111.111.111:1000
[extension_api]
openstack_keystone_admin=OS-KADM