example_box/Vagrantfile in vagrant-ovirt3-1.7.0 vs example_box/Vagrantfile in vagrant-ovirt3-1.7.1

- old
+ new

@@ -2,18 +2,19 @@ # 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.hostname = 'asdf' 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 = "e92124b9-22f4-4cef-bcd6-b9ae22155dcd" + ovirt.url = "https://server.blindrage.local:443" + ovirt.username = "admin@internal" + ovirt.password = "^4zK>xxTX:HG2s<" + ovirt.datacenter = "local_dc" + ovirt.template = "vagrant-centos65" ovirt.cpus = 1 ovirt.memory = 512 + ovirt.memory_guaranteed = 1024 ovirt.ca_no_verify = true end end