diff options
author | Szilard Cserey <szilard.cserey@gmail.com> | 2016-03-09 17:52:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-03-09 17:52:19 +0000 |
commit | 735dc3a58e599f89e1e214ba41f2a023f97085fb (patch) | |
tree | b3c56ea959b24acbb645a0fdce329ba92a63f47e /deploy/environments/execution_environment.py | |
parent | bdf4ad5d52b8094bc2f99195ae46f6904e3d42e2 (diff) | |
parent | 1ef2a5abcdacf3274e4ed17c612835ae10cb34d8 (diff) |
Merge "Make number of cpus configurable in dha file"
Diffstat (limited to 'deploy/environments/execution_environment.py')
-rw-r--r-- | deploy/environments/execution_environment.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/deploy/environments/execution_environment.py b/deploy/environments/execution_environment.py index 38e5bcdf7..c2e7a0b23 100644 --- a/deploy/environments/execution_environment.py +++ b/deploy/environments/execution_environment.py @@ -50,7 +50,7 @@ class ExecutionEnvironment(object): for file in disk_files: delete(file) - def define_vm(self, vm_name, temp_vm_file, disk_path): + def define_vm(self, vm_name, temp_vm_file, disk_path, number_cpus): log('Creating VM %s with disks %s' % (vm_name, disk_path)) with open(temp_vm_file) as f: vm_xml = etree.parse(f) @@ -60,10 +60,14 @@ class ExecutionEnvironment(object): uuids = vm_xml.xpath('/domain/uuid') for uuid in uuids: uuid.getparent().remove(uuid) + if number_cpus: + vcpus = vm_xml.xpath('/domain/vcpu') + for vcpu in vcpus: + vcpu.text = str(number_cpus) disks = vm_xml.xpath('/domain/devices/disk') for disk in disks: if (disk.get('type') == 'file' and - disk.get('device') == 'disk'): + disk.get('device') == 'disk'): sources = disk.xpath('source') for source in sources: disk.remove(source) |