openstack-ansible-ceph_client/Vagrantfile
Andy McCrae c7b17d4b0d Remove Trusty support from ceph_client role
Change-Id: I8a1fed14bd1107c6557c7e4a1c1bdce840a1160a
Implements: blueprint trusty-removal
2016-12-15 13:12:20 +00:00

17 lines
344 B
Ruby

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