1
0
mirror of https://github.com/gryf/boxpy.git synced 2026-02-02 06:05:47 +01:00

3 Commits
1.4 ... 1.5

Author SHA1 Message Date
b7b4ba5cbc Readme update 2022-11-15 20:33:10 +01:00
47766b6cd9 Added ability to point to local qcow2 image.
Instead of downloading image from the network, there is a way to point
out cloud user and image within yaml configuration.
2022-11-15 20:27:14 +01:00
55cb8d5e30 Better messagingn in conf/modules vbox issues 2022-10-16 08:52:55 +02:00
2 changed files with 61 additions and 11 deletions

View File

@@ -102,6 +102,10 @@ Currently, following commands are available:
All of the commands have a range of options, and can be examined by using
``--help`` option.
YAML Configuration
------------------
What is more interesting though, is the fact, that you can pass your own
`cloud-init`_ yaml file, so that VM can be provisioned in easy way.
@@ -203,6 +207,19 @@ configuration additional NIC for virtual machine, i.e:
advanced:
nic2: intnet
To select image from local file system, it is possible to set one by providing
it under ``boxpy_data.image`` key:
.. code:: yaml
…
boxpy_data:
image: /path/to/the/qcow2/image
default_user: cloud-user
Note, that default_user is also needed to be provided, as there is no guess,
what is the default username for cloud-init configured within provided image.
License
-------

55
box.py
View File

@@ -139,7 +139,8 @@ _boxpy() {
;;
create|rebuild)
items=(--cpus --disable-nested --disk-size --distro --forwarding
--key --memory --hostname --port --config --version --type)
--image --key --memory --hostname --port --config --version
--type)
if [[ ${prev} == ${cmd} ]]; then
if [[ ${cmd} = "rebuild" ]]; then
_vms_comp vms
@@ -267,6 +268,10 @@ class BoxVBoxFailure(BoxError):
pass
class BoxConfError(BoxError):
pass
class FakeLogger:
"""
print based "logger" class. I like to use 'end' parameter of print
@@ -358,18 +363,20 @@ class FakeLogger:
class Config:
ATTRS = ('cpus', 'config', 'creator', 'disable_nested', 'disk_size',
'distro', 'forwarding', 'hostname', 'key', 'memory', 'name',
'port', 'version', 'username')
'distro', 'default_user', 'forwarding', 'hostname', 'image',
'key', 'memory', 'name', 'port', 'version', 'username')
def __init__(self, args, vbox=None):
self.advanced = None
self.distro = None
self.default_user = None
self.cpus = None
self.creator = None
self.disable_nested = 'False'
self.disk_size = None
self.forwarding = {}
self.hostname = None
self.image = None
self.key = None
self.memory = None
self.name = args.name # this one is not stored anywhere
@@ -498,7 +505,7 @@ class Config:
self.ssh_key_path = os.path.join(os.path.expanduser("~/.ssh"),
self.ssh_key_path)
if not os.path.exists(self.ssh_key_path):
raise BoxNotFound(f'Cannot find ssh public key: {self.key}')
raise BoxConfError(f'Cannot find ssh public key: {self.key}')
def _set_defaults(self):
conf = yaml.safe_load(USER_DATA)
@@ -545,6 +552,16 @@ class Config:
continue
setattr(self, key, str(val))
# update distros dict with custom entry if there is at least image
if conf.get('boxpy_data') and conf['boxpy_data'].get('image'):
custom = {'username': conf['boxpy_data'].get('default_user'),
'realname': 'custom os',
'img_class': CustomImage,
'amd64': 'x86_64',
'image': conf['boxpy_data']['image'],
'default_version': '0'}
DISTROS['custom'] = custom
# remove boxpy_data since it will be not needed on the guest side
if conf.get('boxpy_data'):
if conf['boxpy_data'].get('advanced'):
@@ -720,6 +737,12 @@ class VBoxManage:
LOG.fatal('Failed to create VM:\n%s', out.stderr)
return None
if out.stdout.startswith('WARNING:'):
LOG.fatal('Created crippled VM:\n%s\nFix the issue with '
'VirtualBox, remove the dead VM and start over.',
out.stdout)
return None
for line in out.stdout.split('\n'):
if line.startswith('UUID:'):
self.uuid = line.split('UUID:')[1].strip()
@@ -886,10 +909,10 @@ class Image:
URL = ""
IMG = ""
def __init__(self, vbox, version, arch, release):
def __init__(self, vbox, version, arch, release, fname=None):
self.vbox = vbox
self._tmp = tempfile.mkdtemp(prefix='boxpy_')
self._img_fname = None
self._img_fname = fname
def convert_to_vdi(self, disk_img, size):
LOG.info('Converting and resizing "%s", new size: %s', disk_img, size)
@@ -968,7 +991,7 @@ class Ubuntu(Image):
URL = "https://cloud-images.ubuntu.com/releases/%s/release/%s"
IMG = "ubuntu-%s-server-cloudimg-%s.img"
def __init__(self, vbox, version, arch, release):
def __init__(self, vbox, version, arch, release, fname=None):
super().__init__(vbox, version, arch, release)
self._img_fname = self.IMG % (version, arch)
self._img_url = self.URL % (version, self._img_fname)
@@ -993,7 +1016,7 @@ class Fedora(Image):
IMG = "Fedora-Cloud-Base-%s-%s.%s.qcow2"
CHKS = "Fedora-Cloud-%s-%s-%s-CHECKSUM"
def __init__(self, vbox, version, arch, release):
def __init__(self, vbox, version, arch, release, fname=None):
super().__init__(vbox, version, arch, release)
self._img_fname = self.IMG % (version, release, arch)
self._img_url = self.URL % (version, arch, self._img_fname)
@@ -1064,6 +1087,13 @@ class CentosStream(Image):
return expected_sum
class CustomImage(Image):
def _download_image(self):
# just use provided image
return True
DISTROS = {'ubuntu': {'username': 'ubuntu',
'realname': 'ubuntu',
'img_class': Ubuntu,
@@ -1086,7 +1116,7 @@ def get_image_object(vbox, version, image='ubuntu', arch='amd64'):
if image == 'fedora':
release = FEDORA_RELEASE_MAP[version]
return DISTROS[image]['img_class'](vbox, version, DISTROS[image]['amd64'],
release)
release, DISTROS[image].get('image'))
class IsoImage:
@@ -1137,7 +1167,8 @@ def vmcreate(args, conf=None):
if not conf:
try:
conf = Config(args)
except BoxNotFound:
except BoxConfError as err:
LOG.fatal(f'Configuration error: {err.args[0]}.')
return 7
except yaml.YAMLError:
LOG.fatal(f'Cannot read or parse file `{args.config}` as YAML '
@@ -1161,7 +1192,9 @@ def vmcreate(args, conf=None):
if not vbox.create_controller('SATA', 'sata'):
return 4
for key in ('distro', 'hostname', 'key', 'version'):
for key in ('distro', 'hostname', 'key', 'version', 'image'):
if not getattr(conf, key) is None:
continue
if not vbox.setextradata(key, getattr(conf, key)):
return 5