10d2e0dbcb
Change-Id: I34de18d5ec2f8ca86d609cd01ea79ecaa4b7de0d
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
# Note:
|
|
# This file is maintained in the openstack-ansible-tests repository.
|
|
# https://opendev.org/openstack/openstack-ansible-tests/src/Vagrantfile
|
|
#
|
|
# If you need to perform any change on it, you should modify the central file,
|
|
# then, an OpenStack CI job will propagate your changes to every OSA repository
|
|
# since every repo uses the same Vagrantfile
|
|
|
|
# Verify whether required plugins are installed.
|
|
required_plugins = [ "vagrant-disksize" ]
|
|
required_plugins.each do |plugin|
|
|
if not Vagrant.has_plugin?(plugin)
|
|
raise "The vagrant plugin #{plugin} is required. Please run `vagrant plugin install #{plugin}`"
|
|
end
|
|
end
|
|
|
|
Vagrant.configure(2) do |config|
|
|
config.vm.provider "virtualbox" do |v|
|
|
v.memory = 6144
|
|
v.cpus = 2
|
|
# https://github.com/hashicorp/vagrant/issues/9524
|
|
v.customize ["modifyvm", :id, "--audio", "none"]
|
|
end
|
|
|
|
config.vm.synced_folder ".", "/vagrant", type: "rsync"
|
|
|
|
config.vm.provision "shell",
|
|
privileged: false,
|
|
inline: <<-SHELL
|
|
cd /vagrant
|
|
./run_tests.sh
|
|
SHELL
|
|
|
|
config.vm.define "centos8" do |centos8|
|
|
centos8.vm.box = "centos/8"
|
|
end
|
|
|
|
config.vm.define "debian10" do |debian10|
|
|
debian10.vm.box = "debian/buster64"
|
|
end
|
|
|
|
config.vm.define "ubuntu2004" do |focal|
|
|
focal.disksize.size = "40GB"
|
|
focal.vm.box = "ubuntu/focal64"
|
|
end
|
|
end
|