Sha256: 4e91d0ab3bb614f528080c179267a27607d08b064783f9be5661f149d8ccc981
Contents?: true
Size: 516 Bytes
Versions: 2
Compression:
Stored size: 516 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = 'ovirt3' config.vm.box_url = 'https://raw.github.com/myoung34/vagrant-ovirt3/master/example_box/dummy.box' 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-ovirt3-1.1.0 | example_box/Vagrantfile |
vagrant-ovirt3-1.0.0 | example_box/Vagrantfile |