This is a Vagrant 1.1+ plugin that adds an oVirt and rhev provider to Vagrant, allowing Vagrant to control and provision machines in oVirt and RHEV.
In this document, both oVirt and RHEV names are used interchangeably and represent the same platform on top of which this provider should work.
- Vagrant
up
anddestroy
commands. - Create and boot oVirt machines from templates.
- SSH into domains.
- Provision domains with any built-in Vagrant provisioner.
- Minimal synced folder support via
rsync
.
- Validation of configuration parameters.
- Test it on other versions of oVirt and RHEV.
- Template preparation scripts for other distros than RHEL.
- Vagrant commands
halt
,resume
,ssh
,provision
,suspend
andresume
. - Take a look at open issues.
Install using standard Vagrant 1.1+ plugin installation methods. After
installing, vagrant up
and specify the ovirt
provider. An example is shown below.
$ vagrant plugin install vagrant-ovirt
Create a Vagrantfile that looks like the following, filling in your information where necessary.
Vagrant.configure('2') do |config|
config.vm.box = 'ovirt'
config.vm.box_url = 'https://raw.github.com/pradels/vagrant-ovirt/master/example_box/ovirt.box'
config.vm.network :private_network,
:ip => '192.168.56.100', :nictype => 'virtio', :netmask => '255.255.255.0' #normal network configuration
:ovirt__ip => '10.101.55.72', :ovirt__network_name => 'ovirtmgmt', :ovirt__gateway => '10.101.55.1', # oVirt specific information, overwrites previous on oVirt provider
config.vm.provider :ovirt do |ovirt|
ovirt.template = 'template'
ovirt.cpus = 1
ovirt.memory = 1024
ovirt.console = 'vnc' #could also be 'spice'
ovirt.url = 'https://youroVirtmaster:443'
ovirt.username = 'username'
ovirt.password = 'password'
ovirt.datacenter = 'datacenter'
#ovirt.ip_command = 'echo ipaddress'
end
This provider exposes quite a few provider-specific configuration options:
url
- URL to management interface.username
- Username to access oVirt.password
- Password to access oVirt.datacenter
- oVirt datacenter name, where machines will be created.cluster
- oVirt cluster name. Defaults to first cluster found.ip_command
- Shell command, which shoud return IP address string for MAC address specified as the first parameter in the call.
memory
- Amount of memory in MBytes. Defaults to 512 if not set.cpus
- Number of virtual cpus. Defaults to 1 if not set.template
- Name of template from which new VM should be created.console
- Console type to use. Can be 'vnc' or 'spice'. Default is 'spice'
Specific domain settings can be set for each domain separately in multi-VM environment. Example below shows a part of Vagrantfile, where specific options are set for dbserver domain.
Vagrant.configure("2") do |config|
config.vm.define :dbserver do |dbserver|
dbserver.vm.box = "ovirt"
dbserver.vm.provider :ovirt do |vm|
vm.memory = 2048
vm.cpus = 2
vm.template = "centos63-vagrant-base"
end
end
# ...
In prepared project directory, run following command:
$ vagrant up --provider=ovirt
Vagrant needs to know that we want to use oVirt and not default VirtualBox.
That's why there is --provider=ovirt
option specified. Other way to tell
Vagrant to use oVirt provider is to setup environment variable
export VAGRANT_DEFAULT_PROVIDER=ovirt
.
This example allows you to spin up a box under virtualbox using $ vagrant up
as well as a VM under oVirt using a template with $ vagrant up --provider=ovirt
Note, the network information will differ between the two. Under virtualbox, it should come up with an IP of 192.168.56.100
. Under oVirt it should come up as 10.101.55.72
if successful.
Vagrant.configure('2') do |config|
config.vm.box = 'mybox'
config.vm.network :private_network,
:ip => '192.168.56.100', :nictype => 'virtio', :netmask => '255.255.255.0' #normal network configuration
:ovirt__ip => '10.101.55.72', :ovirt__network_name => 'ovirtmgmt', :ovirt__gateway => '10.101.55.1', # oVirt specific information, overwrites previous on oVirt provider
config.vm.provider :virtualbox do |vb|
vb.customize [
# Key Value
'modifyvm', :id,
'--cpuexecutioncap', '90',
'--memory', '1376',
'--nictype2', 'virtio',
]
end
config.vm.provider :ovirt do |ovirt|
ovirt.template = 'template'
ovirt.cpus = 1
ovirt.memory = 1024
ovirt.console = 'vnc' #could also be 'spice'
ovirt.url = 'https://youroVirtmaster:443'
ovirt.username = 'username'
ovirt.password = 'password'
ovirt.datacenter = 'datacenter'
#ovirt.ip_command = 'echo ipaddress'
end
config.vm.provision 'shell' do |shell|
shell.inline = 'uname -a > /var/log/something.log 2>&1'
end
config.vm.provision :puppet do |puppet|
puppet.options = [
"--environment development",
'--hiera_config=/etc/puppet/hiera/hiera.yaml',
]
puppet.manifests_path = './manifests'
puppet.manifest_file = 'default.pp'
end
Vagrant goes through steps below when creating new project:
- Connect to oVirt via REST API on every REST query.
- Create new oVirt machine from template with additional network interfaces.
- Start oVirt machine.
- Check for IP address of VM with
ip_command
. - Wait till SSH is available.
- Sync folders via
rsync
and run Vagrant provisioner on new domain if setup in Vagrantfile.
Networking features in the form of config.vm.network
support private networks
concept. No public network or port forwarding are supported in current version
of provider.
An examples of network interface definitions:
config.vm.define :test_vm1 do |test_vm1|
test_vm1.vm.network :private_network,
:ip => "10.20.30.40",
:netmask => "255.255.255.0",
:ovirt__network_name => "ovirt_networkname"
end
In example below, one additional network interface is created for VM test_vm1.
Interface is connected to ovirt_networkname
network and configured to ip
address 10.20.30.40/24
. If you omit ip address, interface will be configured
dynamically via dhcp.
OVirt API doesn't provide standard way how to find out an IP address of running VM. But we know, what is MAC address of virtual machine. Problem is, where to get mapping MAC to IP address.
There is an option named ip_command, which by default looks into local arp table and searches there IP for MAC address specified as a MAC shell variable. Maybe you need to customize this behaviour, so setup your own ip_commands to your needs.
There is minimal support for synced folders. Upon vagrant up
, the oVirt
provider will use rsync
(if available) to uni-directionally sync the folder
to the remote machine over SSH.
This is good enough for all built-in Vagrant provisioners (shell, chef, and puppet) to work!
Every provider in Vagrant must introduce a custom box format. This provider introduces oVirt boxes. You can view an example box in the example_box directory. That directory also contains instructions on how to build a box.
The box is a tarball containing:
metadata.json
file describing box image (just a provider name).Vagrantfile
that does default settings for the provider-specific configuration for this provider.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request