Bug 1294624

Summary: (v0.5) Lago uses 4vCPUs by default - which is too much on lower end hosts
Product: [Community] ovirt-system-tests Reporter: Yaniv Kaul <ykaul>
Component: RFEsAssignee: David Caro <dcaroest>
Status: CLOSED UPSTREAM QA Contact: Pavel Stehlik <pstehlik>
Severity: medium Docs Contact:
Priority: unspecified    
Version: 0.4CC: bugs, eedri
Target Milestone: ---   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2016-01-21 10:22:46 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Yaniv Kaul 2015-12-29 10:30:34 UTC
Description of problem:
There's no value in running the hosts, the storage with 4 vCPUs. Especially on my low end hosts, it may cause CPU contention.

Version-Release number of selected component (if applicable):
0.5


Additional info:
Change /usr/lib/ptrhon2.7/site-packages/lago/virt.py :
 682             '@VCPU@': self._spec.get('vcpu', 4),
 683             '@CPU@': self._spec.get('cpu', 4),

to:
 682             '@VCPU@': self._spec.get('vcpu', 2),
 683             '@CPU@': self._spec.get('cpu', 2),



Should fix that.

Comment 1 Yaniv Kaul 2016-01-21 10:49:36 UTC
https://gerrit.ovirt.org/#/c/52536/ implements this little change.

Comment 2 Eyal Edri 2016-01-21 12:47:22 UTC
moved to: https://github.com/lago-project/lago/issues/5