From: Loic Dachary Date: Tue, 10 Nov 2015 16:21:23 +0000 (+0100) Subject: openstack: teuthology for 100 or more need 32GB X-Git-Tag: 1.1.0~742^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F720%2Fhead;p=teuthology.git openstack: teuthology for 100 or more need 32GB Signed-off-by: Loic Dachary --- diff --git a/teuthology/openstack/__init__.py b/teuthology/openstack/__init__.py index 36ab68265..3a0b032dd 100644 --- a/teuthology/openstack/__init__.py +++ b/teuthology/openstack/__init__.py @@ -509,11 +509,11 @@ ssh access : ssh {identity}{username}@{ip} # logs in /usr/share/nginx/ 'ram': 1024, # MB 'cpus': 1, } - if self.args.simultaneous_jobs > 100: + if self.args.simultaneous_jobs >= 100: hint['ram'] = 30000 # MB - elif self.args.simultaneous_jobs > 25: - hint['ram'] = 7000 # MB - elif self.args.simultaneous_jobs > 10: + elif self.args.simultaneous_jobs >= 25: + hint['ram'] = 8000 # MB + elif self.args.simultaneous_jobs >= 10: hint['ram'] = 4000 # MB select = None