libvirt
Vagrant is a tool that provides a unified workflow for the creation, deployment and management of virtual development environments. The following sections describe how to manage virtual machines by using Vagrant.
Vagrant provides an abstraction layer for various virtualization providers via a simple configuration file that allows developers and operators to quickly spin up a virtual machine (VM) running Linux or any other operating system.
Vagrant uses providers
, provisioners
,
boxes
, and Vagrantfiles
as building
blocks of the virtual machines.
Services to set up and create virtual environments. Vagrant ships with
support for VirtualBox and Microsoft Hyper-V virtualization and Docker
containers. Other services such as libvirt
, VMware or AWS are
supported via plugins.
Tools to customize the configuration of virtual environments. Vagrant has built built-in providers for uploading files, syncing directories or executing shell commands, but also supports configuration management systems such as Ansible, CFEngine, Chef, Puppet, and Salt.
Configuration file and file name (Vagrantfile
) for virtual
environments. It contains machine and software requirements and all
necessary steps in order to create a development-ready box.
Format and an extension (*.box
) for virtual
environments. Boxes can be downloaded from the
Vagrant Cloud and
copied from one machine to another in order to to replicate an
environment.
SUSE provides official Vagrant Boxes for SUSE Linux Enterprise using the
VirtualBox and libvirt
providers. SUSE Linux Enterprise Server boxes are available for the
AMD64/Intel 64 and AArch64 architectures, SUSE Linux Enterprise Desktop only for AMD64/Intel 64.
A new VM can be launched with Vagrant via the following set of commands. This example uses the official Vagrant box for openSUSE Tumbleweed which is available from the Vagrant Cloud.
Download the Vagrant box for openSUSE Tumbleweed:
vagrant
init opensuse/Tumbleweed.x86_64
This also registers the box with Vagrant and creates the Vagrantfile
.
(Optional)
Edit the Vagrantfile
to customize the environment.
Start the box:
vagrant
up
Access the box through ssh
:
vagrant
ssh
Starting with SUSE Linux Enterprise 15 SP2, SUSE provides official Vagrant boxes for
SUSE Linux Enterprise using the VirtualBox and libvirt
providers. SUSE Linux Enterprise Server boxes are
available for the AMD64/Intel 64 and AArch64 architectures, SUSE Linux Enterprise Desktop only for
AMD64/Intel 64.
These boxes come with the bare minimum of packages to reduce their size and are not registered, thus users need to register the boxes prior to further provisioning.
The boxes are only available for direct download from https://download.suse.com. Therefore, a downloaded box must be manually registered with Vagrant as follows:
vagrant
box add --name SLES-15-SP2 \ /path/to/SLES15-SP2-Vagrant.x86_64-15.2-libvirt-*.vagrant.libvirt.box
The box is then available under the name SLES-15-SP2
and
can be used like other Vagrant boxes:
vagrant
init SLES-15-SP2
vagrant
up
vagrant
ssh
For more information about Vagrant and it's configuration, refer to the official documentation at https://docs.vagrantup.com/.