remove print statements and actually use the provided disk size

This commit is contained in:
Jordan Rodgers 2017-11-30 19:45:57 -05:00
parent 598d4688db
commit 6d494a59a5
2 changed files with 4 additions and 6 deletions

View file

@ -105,7 +105,7 @@ def create_vm(proxmox, starrs, user, name, cores, memory, disk):
cores=cores,
memory=memory,
storage='ceph',
virtio0='ceph:10',
virtio0="ceph:{}".format(disk),
net0='virtio,bridge=vmbr0',
pool=user)
time.sleep(3)