Vagrant provider for libvirt.
Go to file
Bram de Greve 6c4b7758aa
Adding disk_address_type option. (#954)
This patch allows to specify the virtio-mmio address type, which is
needed for debian guests on virt machines that don't support the PCI
address type.

See also 
https://translatedcode.wordpress.com/2016/11/03/installing-debian-on-qemus-32-bit-arm-virt-board/
where it is explicitly said to use `virtio-blk-device` and
`virtio-net-device` instead of `virtio-blk-pci` and `virtio-net-pci`, for
that reason.

Apparently, libvirt will use the `virtio-blk-pci` and `virtio-net-pci`
by default. By setting address type to `virtio-mmio`, it uses
`virtio-blk-device` instead. It seems not necessary to do the same for
the network controller, since libvirt will also use `virtio-net-device`
if the disk address type is set to `virtio-mmio`.

While this should help with ARM machines, it won't solve all issues
as some machines will boot perfectly with the existing defaults
provided the correct loader binary is used.

Relates-to: #1608
2022-11-14 12:52:22 +00:00
.github Replace use of secret for org name (#1662) 2022-11-04 17:03:15 +00:00
docs Adding disk_address_type option. (#954) 2022-11-14 12:52:22 +00:00
example_box Trim trailing whitespace 2022-08-08 22:46:07 +00:00
lib Adding disk_address_type option. (#954) 2022-11-14 12:52:22 +00:00
locales Report graphics port after resolving (#1622) 2022-10-01 13:59:36 +00:00
spec Adding disk_address_type option. (#954) 2022-11-14 12:52:22 +00:00
tools Replace remaining stray references with main (#1582) 2022-09-07 10:50:28 +00:00
.coveralls.yml Switch from travis to github actions for unit tests (#1206) 2021-02-20 15:23:16 +00:00
.dockerignore Docker image bundle vagrant-libvirt with vagrant (#1569) 2022-09-01 20:14:24 +01:00
.gitattributes Support building from git-archive tarballs (#1187) 2020-12-14 18:49:50 +00:00
.gitignore Migrate documentation to github pages (#1523) 2022-07-19 13:48:02 +00:00
.ruby-gemset Provide ruby version and gemset config for rvm (#1511) 2022-06-09 06:19:04 +00:00
.ruby-version Use ruby 3.1.2 by default for development (#1666) 2022-11-08 15:21:04 +00:00
Dockerfile [Dockerfile] Fix creation of plugins.json with buildah (#1602) 2022-09-22 16:42:58 +01:00
entrypoint.sh Improve handling when run using root user (#1572) 2022-09-03 11:37:25 +00:00
Gemfile Support running tests in parallel (#1667) 2022-11-08 16:28:32 +00:00
LICENSE Initial commit 2013-03-27 00:55:30 +01:00
Rakefile Enable frozen string across project (#1319) 2021-06-30 13:27:03 +01:00
README.md Include distro matrix status badge from qa project (#1665) 2022-11-07 14:53:13 +01:00
vagrant-libvirt.gemspec Switch to xml-simple for document comparison (#1567) 2022-08-30 12:47:05 +01:00

Vagrant Libvirt Provider

Vagrant Libvirt Logo

Join the chat at https://gitter.im/vagrant-libvirt/vagrant-libvirt Build Status Coverage Status Gem Version

This is a Vagrant plugin that adds a Libvirt provider to Vagrant, allowing Vagrant to control and provision machines via Libvirt toolkit.

Note: Actual version is still a development one. Feedback is welcome and can help a lot :-)

Vagrant-libvirt Documentation is published at https://vagrant-libvirt.github.io/vagrant-libvirt/

QA status

We periodically test basic functionality for vagrant-libvirt on various distributions. In the status badges below, build passing means that latest version of Vagrant + Vagrant-libvirt was installed correctly and vagrant up is working. Click the badge to review the action workflow.

Index

Installing

Installation typically involves a number of distribution package dependencies to ensure that Libvirt is available. Recommend that you follow the installation guide.

Running

Once installed, use vagrant-libvirt through vagrant.

Locate a vagrant box containing the distribution you want to use at Vagrant Cloud and initialize.

vagrant init fedora/32-cloud-base

Then run following command:

vagrant up --provider=libvirt

Vagrant needs to know that we want to use Libvirt and not default VirtualBox. That's why there is --provider=libvirt option specified. Other way to tell Vagrant to use Libvirt provider is to setup environment variable

export VAGRANT_DEFAULT_PROVIDER=libvirt

Afterwards to enter the VM simply use:

vagrant ssh

If you can't find a box that works as you need, have a look at our documentation on creating boxes on how to take existing ones, customize them and repackage.

Development

To work on the vagrant-libvirt plugin, clone this repository out, and use Bundler to get the dependencies:

git clone https://github.com/vagrant-libvirt/vagrant-libvirt.git
cd vagrant-libvirt
bundle config --local with development
bundle config --local path 'vendor/bundle'
bundle install

Once you have the dependencies, verify the unit tests pass with rspec:

bundle exec rspec --fail-fast --color --format documentation

If those pass, you're ready to start developing the plugin.

Additionally if you wish to test against a specific version of vagrant you can control the version using the following before running the tests:

export VAGRANT_VERSION=v2.2.14
bundle update && bundle exec rspec --fail-fast --color --format documentation

To run the acceptance tests which involve bringing up VMs and exercising various functionality aspects run the following (warning, may have issues if distro ruby is newer than supported by vagrant):

bundle exec rspec --fail-fast --color --format documentation --tag acceptance

Note rvm is used by the maintainers to help provide an environment to test against multiple ruby versions that align with the ones used by vagrant for their embedded ruby depending on the release. You can see what version is used by looking at the current unit tests workflow. By default if you have rvm installed and enabled it this project looks to use ruby 2.6.6 and configures a separate gemset, both of which will be switched to each time you enter the project directory.

You can test the plugin without installing it into your Vagrant environment by just creating a Vagrantfile in the top level of this directory (it is gitignored) that uses it. You can add the following line to your Vagrantfile while in development to ensure vagrant checks that the plugin is installed:

Vagrant.configure("2") do |config|
  config.vagrant.plugins = "vagrant-libvirt"
end

Or add the following to the top of the file to ensure that any required plugins are installed globally:

REQUIRED_PLUGINS = %w(vagrant-libvirt)
exit unless REQUIRED_PLUGINS.all? do |plugin|
  Vagrant.has_plugin?(plugin) || (
    puts "The #{plugin} plugin is required. Please install it with:"
    puts "$ vagrant plugin install #{plugin}"
    false
  )
end

Now you can use bundler to execute Vagrant:

bundle exec vagrant up --provider=libvirt

IMPORTANT NOTE: bundle is crucial. You need to use bundled Vagrant.

Contributing

contributions welcome

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

For future work take a look at open issues.