Sha256: 1a036d4445bddb590272c433a84ca91d055e4603694a5374630e4604c939c5e8

Contents?: true

Size: 526 Bytes

Versions: 6

Compression:

Stored size: 526 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  config.vm.box = 'ovirt3'
  config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt3/blob/master/example_box/dummy.box?raw=true'

  config.vm.provider :ovirt3 do |ovirt|
    ovirt.url = "https://ovirt.example.com:443"
    ovirt.username = "username"
    ovirt.password = "secret"
    ovirt.datacenter = "Datacenter name"
    ovirt.template = "Template name"
    ovirt.quota = "Quota name"
    ovirt.cpus = 1
    ovirt.memory = 512
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vagrant-ovirt3-1.5.0 example_box/Vagrantfile
vagrant-ovirt3-1.3.0 example_box/Vagrantfile
vagrant-ovirt3-1.4.0 example_box/Vagrantfile
vagrant-ovirt3-1.2.0 example_box/Vagrantfile
vagrant-ovirt3-1.1.2 example_box/Vagrantfile
vagrant-ovirt3-1.1.1 example_box/Vagrantfile