From 48c819f97d53b558e7be02f7f0eb5b2f72cabcac Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 19 Sep 2019 13:20:01 +0200 Subject: Remove any cores quota in tempest_scenario and shaker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both can reach the default limit if lots of computes available. Co-Authored-By: Vincent Huet Change-Id: Ifd8a1080a08f55bf4b0efe1858e79fa4aff75895 Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/openstack/shaker/shaker.py | 4 +++- functest/opnfv_tests/openstack/tempest/tempest.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'functest') diff --git a/functest/opnfv_tests/openstack/shaker/shaker.py b/functest/opnfv_tests/openstack/shaker/shaker.py index 03aeccafc..46a44c775 100644 --- a/functest/opnfv_tests/openstack/shaker/shaker.py +++ b/functest/opnfv_tests/openstack/shaker/shaker.py @@ -41,6 +41,7 @@ class Shaker(singlevm.SingleVm2): create_server_timeout = 300 shaker_timeout = '3600' quota_instances = -1 + quota_cores = -1 def __init__(self, **kwargs): super(Shaker, self).__init__(**kwargs) @@ -85,7 +86,8 @@ class Shaker(singlevm.SingleVm2): domain=self.project.domain.id) self.orig_cloud.set_compute_quotas( self.project.project.name, - instances=self.quota_instances) + instances=self.quota_instances, + cores=self.quota_cores) scpc = scp.SCPClient(self.ssh.get_transport()) scpc.put('/home/opnfv/functest/conf/env_file', remote_path='~/') if os.environ.get('OS_CACERT'): diff --git a/functest/opnfv_tests/openstack/tempest/tempest.py b/functest/opnfv_tests/openstack/tempest/tempest.py index faf2ab5ca..a6ec568a0 100644 --- a/functest/opnfv_tests/openstack/tempest/tempest.py +++ b/functest/opnfv_tests/openstack/tempest/tempest.py @@ -644,9 +644,11 @@ class TempestScenario(TempestCommon): """Tempest scenario testcase implementation class.""" quota_instances = -1 + quota_cores = -1 def run(self, **kwargs): self.orig_cloud.set_compute_quotas( self.project.project.name, - instances=self.quota_instances) + instances=self.quota_instances, + cores=self.quota_cores) return super(TempestScenario, self).run(**kwargs) -- cgit 1.2.3-korg