Virter
Virter is a command line tool for simple creation and cloning of virtual
machines.
Virter supports VMs running standard general purpose distributions such as
CentOS and Ubuntu. It is especially useful for development and testing of
projects which cannot use containers due to kernel dependencies, such as
DRBD and
LINSTOR.
Quick Start
First install and set up libvirt. Then
download one of the releases.
Virter is packaged as a single binary, so just put that into /usr/local/bin
and
you are ready to use virter:
virter image pull centos-7 # also would be auto-pulled in next step
virter vm run --name centos-7-hello --id 100 --wait-ssh centos-7
virter vm ssh centos-7-hello
virter vm rm centos-7-hello
Building from source
If you want to test the latest unstable version of virter, you can build the
git version from sources:
git clone https://github.com/LINBIT/virter
cd virter
go build .
Installation Details
Virter requires:
- A running libvirt daemon on the host where it is run
Configuration is read by default from ~/.config/virter/virter.toml
.
When starting virter for the first time, a default configuration file will be
generated, including documentation about the various flags.
Network domain
If you require DNS resolution from your VMs to return correct FQDNs, add the
domain
to your libvirt network definition:
<network>
...
<domain name='test'/>
...
</network>
By default, virter uses the libvirt network named default
.
Usage
For usage just run virter help
.
Architecture
Virter connects to the libvirt daemon for all the heavy lifting. It supplies
bootstrap configuration to the VMs using cloud-init
volumes, so that the
hostname is set and SSH access is possible.
virsh
Virter is good for starting and cloning cloud-init
based VMs. virsh
is
useful for more detailed libvirt management. They work well together.
virt-install
virt-install
is built for the images that use conventional installers. Virter
uses cloud-init
, making it simpler to use and quicker to start a fresh VM.
Running VMs in AWS/GCP/OpenNebula
Virter is local to a single host making snapshot/restore/clone operations very
efficient. Virter could be thought of as cloud provisioning for your local
machine.
Vagrant
Virter and Vagrant have essentially the same goal. Virter is more tightly
integrated with the Linux virtualization stack, resulting in better
snapshot/restore/clone support.
Multipass
Virter and Multipass have similar goals, but Multipass is Ubuntu specific.
Docker
Virter is like Docker for VMs. The user experience of the tools is generally
similar. Docker containers share the host kernel, whereas Virter starts VMs
with their own kernel.
Kata Containers
Virter starts VMs running a variety of Linux distributions, whereas Kata
Containers uses a specific guest that then runs containers.
Weave Ignite
Ignite has very strong requirements on the guest, so it cannot be used for
running standard distributions.
Development
Virter is a standard go project using modules.
Go 1.13+ is supported.