1
0
mirror of https://github.com/gryf/boxpy.git synced 2026-02-02 14:15:49 +01:00

8 Commits
1.5 ... 1.6

Author SHA1 Message Date
f0282874f8 Added information regarding url for the dl image 2023-02-12 11:45:50 +01:00
4db0b422b8 Added missing fname from Centos class constructor 2023-02-12 11:45:19 +01:00
c3ee529d95 Make 22.04 default version for ubuntu. 2022-12-24 12:29:49 +01:00
cdcb7ffdce Added implementation for custom image. 2022-11-17 20:34:13 +01:00
9658a9ef36 Add commandline options for providing custom image.
Two new commandline options are added: image and default-user. When
image parameter has been add there are implications that:

- default-user is also provided by commandline - regardless it is
  already present in yaml config
- distro parameter is ignored
- custom username, which might be provided by yaml file will become
  default-user if absent.

All of that is the consequence, that by providing custom qcow2 image
there is no easy way to determine what operating system is passed by,
therefore it is purely declarative way of creating VM with such image.
2022-11-17 20:27:58 +01:00
706dfe8688 Decrease memory/disk size of default vm 2022-11-17 19:22:16 +01:00
8252e189cc Fix issue with condition for extra data 2022-11-16 09:11:27 +01:00
e6d4d8ab7a Fix minor issue with pattern for centos image 2022-11-16 09:10:49 +01:00
6 changed files with 106 additions and 76 deletions

View File

@@ -55,7 +55,7 @@ or simply link it somewhere in the path:
$ chmod +x ~/bin/boxpy $ chmod +x ~/bin/boxpy
and now you can issue some command. For example, to spin up a VM with Ubuntu and now you can issue some command. For example, to spin up a VM with Ubuntu
18.04 with one CPU, 2GB of memory and 10GB of disk: 18.04 with one CPU, 1GB of memory and 6GB of disk:
.. code:: shell-session .. code:: shell-session

65
box.py
View File

@@ -46,9 +46,9 @@ ssh:
emit_keys_to_console: false emit_keys_to_console: false
boxpy_data: boxpy_data:
cpus: 1 cpus: 1
disk_size: 10240 disk_size: 6144
key: ~/.ssh/id_rsa key: ~/.ssh/id_rsa
memory: 2048 memory: 1024
''' '''
COMPLETIONS = {'bash': '''\ COMPLETIONS = {'bash': '''\
_boxpy() { _boxpy() {
@@ -138,9 +138,9 @@ _boxpy() {
fi fi
;; ;;
create|rebuild) create|rebuild)
items=(--cpus --disable-nested --disk-size --distro --forwarding items=(--cpus --disable-nested --disk-size --default-user --distro
--image --key --memory --hostname --port --config --version --forwarding --image --key --memory --hostname --port --config
--type) --version --type)
if [[ ${prev} == ${cmd} ]]; then if [[ ${prev} == ${cmd} ]]; then
if [[ ${cmd} = "rebuild" ]]; then if [[ ${cmd} = "rebuild" ]]; then
_vms_comp vms _vms_comp vms
@@ -419,6 +419,10 @@ class Config:
continue continue
setattr(self, attr, str(val)) setattr(self, attr, str(val))
# sort out case, where there is image/default-user provided
if self.image:
self._update_distros_with_custom_image()
# set distribution and version if not specified by user # set distribution and version if not specified by user
if not self.distro: if not self.distro:
self.distro = 'ubuntu' self.distro = 'ubuntu'
@@ -552,16 +556,6 @@ 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'):
@@ -570,6 +564,18 @@ class Config:
self._conf = conf self._conf = conf
def _update_distros_with_custom_image(self):
self.image = os.path.abspath(self.image)
self.distro = 'custom'
if not self.username:
self.username = self.default_user
DISTROS['custom'] = {'username': self.default_user,
'realname': 'custom os',
'img_class': CustomImage,
'amd64': 'x86_64',
'image': self.image,
'default_version': '0'}
def _update(self, source, update): def _update(self, source, update):
for key, val in update.items(): for key, val in update.items():
if isinstance(val, collections.abc.Mapping): if isinstance(val, collections.abc.Mapping):
@@ -972,7 +978,8 @@ class Image:
return True return True
fname = os.path.join(CACHE_DIR, self._img_fname) fname = os.path.join(CACHE_DIR, self._img_fname)
LOG.header('Downloading image %s', self._img_fname) LOG.header('Downloading image %s from %s', self._img_fname,
self._img_url)
Run(['wget', '-q', self._img_url, '-O', fname]) Run(['wget', '-q', self._img_url, '-O', fname])
if not self._checksum(): if not self._checksum():
@@ -1039,10 +1046,10 @@ class Fedora(Image):
class CentosStream(Image): class CentosStream(Image):
URL = "https://cloud.centos.org/centos/%s-stream/%s/images/%s" URL = "https://cloud.centos.org/centos/%s-stream/%s/images/%s"
IMG = '.*(CentOS-Stream-GenericCloud-%s-[0-9]+\.[0-9].%s.qcow2).*' IMG = '.*(CentOS-Stream-GenericCloud-%s-[0-9]+.[0-9].%s.qcow2).*'
CHKS = "CHECKSUM" CHKS = "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._checksum_file = '%s-centos-stream-%s-%s' % (self.CHKS, version, self._checksum_file = '%s-centos-stream-%s-%s' % (self.CHKS, version,
arch) arch)
@@ -1098,7 +1105,7 @@ DISTROS = {'ubuntu': {'username': 'ubuntu',
'realname': 'ubuntu', 'realname': 'ubuntu',
'img_class': Ubuntu, 'img_class': Ubuntu,
'amd64': 'amd64', 'amd64': 'amd64',
'default_version': '20.04'}, 'default_version': '22.04'},
'fedora': {'username': 'fedora', 'fedora': {'username': 'fedora',
'realname': 'fedora', 'realname': 'fedora',
'img_class': Fedora, 'img_class': Fedora,
@@ -1192,8 +1199,8 @@ 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', 'image'): for key in ('distro', 'hostname', 'key', 'version', 'image', 'username'):
if not getattr(conf, key) is None: if getattr(conf, key) is None:
continue continue
if not vbox.setextradata(key, getattr(conf, key)): if not vbox.setextradata(key, getattr(conf, key)):
return 5 return 5
@@ -1526,10 +1533,16 @@ def main():
help="Alternative user-data template filepath") help="Alternative user-data template filepath")
create.add_argument('-d', '--distro', help="Image name. 'ubuntu' is " create.add_argument('-d', '--distro', help="Image name. 'ubuntu' is "
"default") "default")
create.add_argument('-e', '--default-user', help="Default cloud-init user "
"to be used with custom image (--image param). "
"Without image it will make no effect.")
create.add_argument('-f', '--forwarding', action='append', help="expose " create.add_argument('-f', '--forwarding', action='append', help="expose "
"port from VM to the host. It should be in format " "port from VM to the host. It should be in format "
"'hostport:vmport'. this option can be used multiple " "'hostport:vmport'. this option can be used multiple "
"times for multiple ports.") "times for multiple ports.")
create.add_argument('-i', '--image', help="custom qcow2 image filepath. "
"Note, that it requires to provide --default-user as "
"well.")
create.add_argument('-k', '--key', help="SSH key to be add to the config " create.add_argument('-k', '--key', help="SSH key to be add to the config "
"drive. Default ~/.ssh/id_rsa") "drive. Default ~/.ssh/id_rsa")
create.add_argument('-m', '--memory', help="amount of memory in " create.add_argument('-m', '--memory', help="amount of memory in "
@@ -1571,10 +1584,16 @@ def main():
rebuild.add_argument('-c', '--config', rebuild.add_argument('-c', '--config',
help="Alternative user-data template filepath") help="Alternative user-data template filepath")
rebuild.add_argument('-d', '--distro', help="Image name.") rebuild.add_argument('-d', '--distro', help="Image name.")
rebuild.add_argument('-e', '--default-user', help="Default cloud-init "
"user to be used with custom image (--image param). "
"Without image it will make no effect.")
rebuild.add_argument('-f', '--forwarding', action='append', help="expose " rebuild.add_argument('-f', '--forwarding', action='append', help="expose "
"port from VM to the host. It should be in format " "port from VM to the host. It should be in format "
"'hostport:vmport'. this option can be used multiple " "'hostport:vmport'. this option can be used multiple "
"times for multiple ports.") "times for multiple ports.")
rebuild.add_argument('-i', '--image', help="custom qcow2 image filepath. "
"Note, that it requires to provide --default-user as "
"well.")
rebuild.add_argument('-k', '--key', rebuild.add_argument('-k', '--key',
help='SSH key to be add to the config drive') help='SSH key to be add to the config drive')
rebuild.add_argument('-m', '--memory', help='amount of memory in ' rebuild.add_argument('-m', '--memory', help='amount of memory in '
@@ -1617,6 +1636,10 @@ def main():
args = parser.parse_args() args = parser.parse_args()
if 'image' in args and 'default_user' not in args:
parser.error('Parameter --image requires --default-user')
return 22
LOG.set_verbose(args.verbose, args.quiet) LOG.set_verbose(args.verbose, args.quiet)
if 'func' not in args and args.version: if 'func' not in args and args.version:

View File

@@ -29,7 +29,7 @@ runcmd:
- [apt, purge, '-y', python3-pyasn1-modules] - [apt, purge, '-y', python3-pyasn1-modules]
- [apt, purge, '-y', python3-simplejson] - [apt, purge, '-y', python3-simplejson]
- [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"] - [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"]
- [su, -, ubuntu, -c, "vmstrap/bootstrap.sh"] - [su, -, ubuntu, -c, "vmstrap/bootstrap.sh -c"]
- [rm, -fr, /home/ubuntu/vmstrap] - [rm, -fr, /home/ubuntu/vmstrap]
- [su, -, ubuntu, -c, "cp /tmp/local.conf /home/ubuntu/devstack/"] - [su, -, ubuntu, -c, "cp /tmp/local.conf /home/ubuntu/devstack/"]
- [su, -, ubuntu, -c, "echo 'export HOST_IP=10.0.2.15' >> .bashrc"] - [su, -, ubuntu, -c, "echo 'export HOST_IP=10.0.2.15' >> .bashrc"]

View File

@@ -174,7 +174,7 @@ runcmd:
- [apt, purge, '-y', python3-pyasn1-modules] - [apt, purge, '-y', python3-pyasn1-modules]
- [apt, purge, '-y', python3-simplejson] - [apt, purge, '-y', python3-simplejson]
- [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"] - [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"]
- [su, -, ubuntu, -c, "vmstrap/bootstrap.sh"] - [su, -, ubuntu, -c, "vmstrap/bootstrap.sh -c"]
- [rm, -fr, /home/ubuntu/vmstrap] - [rm, -fr, /home/ubuntu/vmstrap]
- [su, -, ubuntu, -c, "echo 'export HOST_IP=192.168.10.10' >> .bashrc"] - [su, -, ubuntu, -c, "echo 'export HOST_IP=192.168.10.10' >> .bashrc"]
- [su, -, ubuntu, -c, "cp /tmp/local.conf /home/ubuntu/devstack/"] - [su, -, ubuntu, -c, "cp /tmp/local.conf /home/ubuntu/devstack/"]
@@ -186,3 +186,4 @@ boxpy_data:
disk_size: 50GB disk_size: 50GB
advanced: advanced:
nic2: intnet nic2: intnet
version: 20.04

View File

@@ -123,7 +123,7 @@ runcmd:
- [apt, purge, '-y', python3-pyasn1-modules] - [apt, purge, '-y', python3-pyasn1-modules]
- [apt, purge, '-y', python3-simplejson] - [apt, purge, '-y', python3-simplejson]
- [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"] - [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"]
- [su, -, ubuntu, -c, "vmstrap/bootstrap.sh"] - [su, -, ubuntu, -c, "vmstrap/bootstrap.sh -c"]
- [rm, -fr, /home/ubuntu/vmstrap] - [rm, -fr, /home/ubuntu/vmstrap]
- [su, -, ubuntu, -c, "echo 'export HOST_IP=192.168.10.11' >> .bashrc"] - [su, -, ubuntu, -c, "echo 'export HOST_IP=192.168.10.11' >> .bashrc"]
- [su, -, ubuntu, -c, "cp /tmp/local.conf /home/ubuntu/devstack/"] - [su, -, ubuntu, -c, "cp /tmp/local.conf /home/ubuntu/devstack/"]
@@ -135,3 +135,4 @@ boxpy_data:
disk_size: 50GB disk_size: 50GB
advanced: advanced:
nic2: intnet nic2: intnet
version: 20.04

View File

@@ -1,5 +1,6 @@
packages: packages:
- build-essential - build-essential
- exuberant-ctags
- gettext - gettext
- libfontconfig1-dev - libfontconfig1-dev
- libgif-dev - libgif-dev
@@ -21,12 +22,16 @@ packages:
- libxrender-dev - libxrender-dev
- libxt-dev - libxt-dev
- make - make
- mc
- sharutils - sharutils
- silversearcher-ag
- tmux
- vim-nox
- xinit - xinit
runcmd: runcmd:
- [su, -, ubuntu, -c, "git clone https://github.com/gryf/wmaker -b experimental"] - [su, -, ubuntu, -c, "git clone https://github.com/gryf/wmaker -b experimental"]
- [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"] - [su, -, ubuntu, -c, "git clone https://github.com/gryf/vmstrap"]
- [su, -, ubuntu, -c, "vmstrap/bootstrap.sh"] - [su, -, ubuntu, -c, "vmstrap/bootstrap.sh -c"]
- [rm, -fr, /home/ubuntu/vmstrap] - [rm, -fr, /home/ubuntu/vmstrap]
boxpy_data: boxpy_data:
key: vm key: vm