aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/environments/virtual_fuel.py
diff options
context:
space:
mode:
authorJosep Puigdemont <josep.puigdemont@enea.com>2016-05-04 14:27:23 +0200
committerJosep Puigdemont <josep.puigdemont@gmail.com>2016-06-15 16:20:51 +0000
commit77e14a8534c91c3f95bcdfe348305b18aa05658c (patch)
tree0cac03eba76b2add851af44cb25f3fae1c911f8e /deploy/environments/virtual_fuel.py
parent93d0208417fa504f722b55500199fce8e265e9da (diff)
virtual_fuel: factor out image creation into a method
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
Diffstat (limited to 'deploy/environments/virtual_fuel.py')
-rw-r--r--deploy/environments/virtual_fuel.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/deploy/environments/virtual_fuel.py b/deploy/environments/virtual_fuel.py
index 966bb9169..82c4e471d 100644
--- a/deploy/environments/virtual_fuel.py
+++ b/deploy/environments/virtual_fuel.py
@@ -51,15 +51,20 @@ class VirtualFuel(ExecutionEnvironment):
with open(temp_vm_file, 'w') as f:
vm_xml.write(f, pretty_print=True, xml_declaration=True)
+ def create_image(self, disk_path, disk_size):
+ exec_cmd('qemu-img create -f qcow2 %s %s' % (disk_path, disk_size))
+
def create_vm(self):
vm_template = '%s/%s' % (self.root_dir,
self.dha.get_node_property(
self.fuel_node_id, 'libvirtTemplate'))
check_file_exists(vm_template)
+
disk_path = '%s/%s.raw' % (self.storage_dir, self.vm_name)
disk_sizes = self.dha.get_disks()
disk_size = disk_sizes['fuel']
- exec_cmd('qemu-img create -f qcow2 %s %s' % (disk_path, disk_size))
+ self.create_image(disk_path, disk_size)
+
temp_vm_file = '%s/%s' % (self.temp_dir, self.vm_name)
exec_cmd('cp %s %s' % (vm_template, temp_vm_file))
self.set_vm_nic(temp_vm_file)