Sha256: 60b2f2e615f7bf8b36f14e345ab12a991e940bf4b89aba9d0cdf8a40be49e9b6
Contents?: true
Size: 722 Bytes
Versions: 2
Compression:
Stored size: 722 Bytes
Contents
Vagrant.configure("2") do |config| config.vm.box = 'ovirt4' config.vm.hostname = "testing" config.vm.box_url = 'https://github.com/myoung34/vagrant-ovirt4/blob/master/example_box/dummy.box?raw=true' config.vm.network :private_network, :ovirt__ip => '192.168.2.254', :ovirt__network_name => 'ovirtmgmt', :ovirt__gateway => '192.168.2.1', :ovirt__netmask => '255.255.255.0', :ovirt__dns_servers => '192.168.2.1' config.vm.provider :ovirt4 do |ovirt| ovirt.url = 'https://ovirt/ovirt-engine/api' ovirt.username = "#{ENV['OVIRT_TEST_USER']}" ovirt.password = "#{ENV['OVIRT_TEST_PASS']}" ovirt.insecure = true ovirt.cluster = 'Default' ovirt.template = 'vagrant-centos7' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-ovirt4-1.2.2 | test/Vagrantfile |
vagrant-ovirt4-1.2.1 | test/Vagrantfile |