mirror of
https://github.com/gryf/boxpy.git
synced 2026-02-02 06:05:47 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b7b4ba5cbc | |||
| 47766b6cd9 | |||
| 55cb8d5e30 |
17
README.rst
17
README.rst
@@ -102,6 +102,10 @@ Currently, following commands are available:
|
|||||||
All of the commands have a range of options, and can be examined by using
|
All of the commands have a range of options, and can be examined by using
|
||||||
``--help`` option.
|
``--help`` option.
|
||||||
|
|
||||||
|
|
||||||
|
YAML Configuration
|
||||||
|
------------------
|
||||||
|
|
||||||
What is more interesting though, is the fact, that you can pass your own
|
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.
|
`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:
|
advanced:
|
||||||
nic2: intnet
|
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
|
License
|
||||||
-------
|
-------
|
||||||
|
|||||||
55
box.py
55
box.py
@@ -139,7 +139,8 @@ _boxpy() {
|
|||||||
;;
|
;;
|
||||||
create|rebuild)
|
create|rebuild)
|
||||||
items=(--cpus --disable-nested --disk-size --distro --forwarding
|
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 [[ ${prev} == ${cmd} ]]; then
|
||||||
if [[ ${cmd} = "rebuild" ]]; then
|
if [[ ${cmd} = "rebuild" ]]; then
|
||||||
_vms_comp vms
|
_vms_comp vms
|
||||||
@@ -267,6 +268,10 @@ class BoxVBoxFailure(BoxError):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class BoxConfError(BoxError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class FakeLogger:
|
class FakeLogger:
|
||||||
"""
|
"""
|
||||||
print based "logger" class. I like to use 'end' parameter of print
|
print based "logger" class. I like to use 'end' parameter of print
|
||||||
@@ -358,18 +363,20 @@ class FakeLogger:
|
|||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
ATTRS = ('cpus', 'config', 'creator', 'disable_nested', 'disk_size',
|
ATTRS = ('cpus', 'config', 'creator', 'disable_nested', 'disk_size',
|
||||||
'distro', 'forwarding', 'hostname', 'key', 'memory', 'name',
|
'distro', 'default_user', 'forwarding', 'hostname', 'image',
|
||||||
'port', 'version', 'username')
|
'key', 'memory', 'name', 'port', 'version', 'username')
|
||||||
|
|
||||||
def __init__(self, args, vbox=None):
|
def __init__(self, args, vbox=None):
|
||||||
self.advanced = None
|
self.advanced = None
|
||||||
self.distro = None
|
self.distro = None
|
||||||
|
self.default_user = None
|
||||||
self.cpus = None
|
self.cpus = None
|
||||||
self.creator = None
|
self.creator = None
|
||||||
self.disable_nested = 'False'
|
self.disable_nested = 'False'
|
||||||
self.disk_size = None
|
self.disk_size = None
|
||||||
self.forwarding = {}
|
self.forwarding = {}
|
||||||
self.hostname = None
|
self.hostname = None
|
||||||
|
self.image = None
|
||||||
self.key = None
|
self.key = None
|
||||||
self.memory = None
|
self.memory = None
|
||||||
self.name = args.name # this one is not stored anywhere
|
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 = os.path.join(os.path.expanduser("~/.ssh"),
|
||||||
self.ssh_key_path)
|
self.ssh_key_path)
|
||||||
if not os.path.exists(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):
|
def _set_defaults(self):
|
||||||
conf = yaml.safe_load(USER_DATA)
|
conf = yaml.safe_load(USER_DATA)
|
||||||
@@ -545,6 +552,16 @@ class Config:
|
|||||||
continue
|
continue
|
||||||
setattr(self, key, str(val))
|
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
|
# remove boxpy_data since it will be not needed on the guest side
|
||||||
if conf.get('boxpy_data'):
|
if conf.get('boxpy_data'):
|
||||||
if conf['boxpy_data'].get('advanced'):
|
if conf['boxpy_data'].get('advanced'):
|
||||||
@@ -720,6 +737,12 @@ class VBoxManage:
|
|||||||
LOG.fatal('Failed to create VM:\n%s', out.stderr)
|
LOG.fatal('Failed to create VM:\n%s', out.stderr)
|
||||||
return None
|
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'):
|
for line in out.stdout.split('\n'):
|
||||||
if line.startswith('UUID:'):
|
if line.startswith('UUID:'):
|
||||||
self.uuid = line.split('UUID:')[1].strip()
|
self.uuid = line.split('UUID:')[1].strip()
|
||||||
@@ -886,10 +909,10 @@ class Image:
|
|||||||
URL = ""
|
URL = ""
|
||||||
IMG = ""
|
IMG = ""
|
||||||
|
|
||||||
def __init__(self, vbox, version, arch, release):
|
def __init__(self, vbox, version, arch, release, fname=None):
|
||||||
self.vbox = vbox
|
self.vbox = vbox
|
||||||
self._tmp = tempfile.mkdtemp(prefix='boxpy_')
|
self._tmp = tempfile.mkdtemp(prefix='boxpy_')
|
||||||
self._img_fname = None
|
self._img_fname = fname
|
||||||
|
|
||||||
def convert_to_vdi(self, disk_img, size):
|
def convert_to_vdi(self, disk_img, size):
|
||||||
LOG.info('Converting and resizing "%s", new size: %s', 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"
|
URL = "https://cloud-images.ubuntu.com/releases/%s/release/%s"
|
||||||
IMG = "ubuntu-%s-server-cloudimg-%s.img"
|
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)
|
super().__init__(vbox, version, arch, release)
|
||||||
self._img_fname = self.IMG % (version, arch)
|
self._img_fname = self.IMG % (version, arch)
|
||||||
self._img_url = self.URL % (version, self._img_fname)
|
self._img_url = self.URL % (version, self._img_fname)
|
||||||
@@ -993,7 +1016,7 @@ class Fedora(Image):
|
|||||||
IMG = "Fedora-Cloud-Base-%s-%s.%s.qcow2"
|
IMG = "Fedora-Cloud-Base-%s-%s.%s.qcow2"
|
||||||
CHKS = "Fedora-Cloud-%s-%s-%s-CHECKSUM"
|
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)
|
super().__init__(vbox, version, arch, release)
|
||||||
self._img_fname = self.IMG % (version, release, arch)
|
self._img_fname = self.IMG % (version, release, arch)
|
||||||
self._img_url = self.URL % (version, arch, self._img_fname)
|
self._img_url = self.URL % (version, arch, self._img_fname)
|
||||||
@@ -1064,6 +1087,13 @@ class CentosStream(Image):
|
|||||||
return expected_sum
|
return expected_sum
|
||||||
|
|
||||||
|
|
||||||
|
class CustomImage(Image):
|
||||||
|
|
||||||
|
def _download_image(self):
|
||||||
|
# just use provided image
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
DISTROS = {'ubuntu': {'username': 'ubuntu',
|
DISTROS = {'ubuntu': {'username': 'ubuntu',
|
||||||
'realname': 'ubuntu',
|
'realname': 'ubuntu',
|
||||||
'img_class': Ubuntu,
|
'img_class': Ubuntu,
|
||||||
@@ -1086,7 +1116,7 @@ def get_image_object(vbox, version, image='ubuntu', arch='amd64'):
|
|||||||
if image == 'fedora':
|
if image == 'fedora':
|
||||||
release = FEDORA_RELEASE_MAP[version]
|
release = FEDORA_RELEASE_MAP[version]
|
||||||
return DISTROS[image]['img_class'](vbox, version, DISTROS[image]['amd64'],
|
return DISTROS[image]['img_class'](vbox, version, DISTROS[image]['amd64'],
|
||||||
release)
|
release, DISTROS[image].get('image'))
|
||||||
|
|
||||||
|
|
||||||
class IsoImage:
|
class IsoImage:
|
||||||
@@ -1137,7 +1167,8 @@ def vmcreate(args, conf=None):
|
|||||||
if not conf:
|
if not conf:
|
||||||
try:
|
try:
|
||||||
conf = Config(args)
|
conf = Config(args)
|
||||||
except BoxNotFound:
|
except BoxConfError as err:
|
||||||
|
LOG.fatal(f'Configuration error: {err.args[0]}.')
|
||||||
return 7
|
return 7
|
||||||
except yaml.YAMLError:
|
except yaml.YAMLError:
|
||||||
LOG.fatal(f'Cannot read or parse file `{args.config}` as YAML '
|
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'):
|
if not vbox.create_controller('SATA', 'sata'):
|
||||||
return 4
|
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)):
|
if not vbox.setextradata(key, getattr(conf, key)):
|
||||||
return 5
|
return 5
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user