openstack-ansible-os_rally/Vagrantfile
Andy McCrae b4298aa857 Remove Trusty support from os_rally role
Change-Id: Ic7ca71ebdd3ede5e1c225a78e3f996874e946f8f
Implements: blueprint trusty-removal
2016-12-15 12:30:23 +00:00

13 lines
260 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end