diff options
author | grakiss <grakiss.wanglei@huawei.com> | 2015-12-31 09:31:31 +0800 |
---|---|---|
committer | mei mei <meimei@huawei.com> | 2016-01-04 01:52:13 +0000 |
commit | 3a65e3e4e78e00d9d46a0909b6713a726f9a9602 (patch) | |
tree | f2523b67896fbb9aa11d1eaed5a3181186948001 /testcases/vIMS | |
parent | 91753df2c0b3e58bea62716a48e9a74bd9d43b45 (diff) |
Update cinder volume quota for new tenant 'vIMS'
Change-Id: I26aad4f3989c89a62f66add85e0d88b7fd274425
Signed-off-by: grakiss <grakiss.wanglei@huawei.com>
Diffstat (limited to 'testcases/vIMS')
-rw-r--r-- | testcases/vIMS/CI/vIMS.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testcases/vIMS/CI/vIMS.py b/testcases/vIMS/CI/vIMS.py index 12fb775a..5a3003fe 100644 --- a/testcases/vIMS/CI/vIMS.py +++ b/testcases/vIMS/CI/vIMS.py @@ -242,6 +242,18 @@ def main(): logger.error("Failed to update security group quota for tenant %s" %TENANT_NAME) exit(-1) + logger.info("Update cinder quota for this tenant") + from cinderclient import client as cinderclient + + creds_cinder = functest_utils.get_credentials("cinder") + cinder_client = cinderclient.Client('1',creds_cinder['username'], + creds_cinder['api_key'], + creds_cinder['project_id'], + creds_cinder['auth_url'], + service_type="volume") + if not functest_utils.update_cinder_quota(cinder_client,tenant_id,20,50,1500): + logger.error("Failed to update cinder quota for tenant %s" % TENANT_NAME) + exit(-1) ################Â CLOUDIFY INITIALISATION ################ |