| 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: | RFEs | Assignee: | David Caro <dcaroest> |
| Status: | CLOSED UPSTREAM | QA Contact: | Pavel Stehlik <pstehlik> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 0.4 | CC: | 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: | |
https://gerrit.ovirt.org/#/c/52536/ implements this little change. |
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.