Updated from OpenStack Ansible Tests

Change-Id: I80c3479e30a017457406627f4dd5e43e37a13996
This commit is contained in:
OpenStack Proposal Bot 2017-06-22 15:18:56 +00:00
parent 51f5adc70b
commit 3881511c72
2 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -69,4 +69,3 @@ tests/*.retry
# Git clones
openstack-ansible-ops

9
Vagrantfile vendored
View File

@ -1,3 +1,11 @@
# 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 = 2048
@ -12,6 +20,7 @@ Vagrant.configure(2) do |config|
SHELL
config.vm.define "ubuntu1604" do |xenial|
xenial.disksize.size = "40GB"
xenial.vm.box = "ubuntu/xenial64"
end