Updated from OpenStack Ansible Tests
Change-Id: I80c3479e30a017457406627f4dd5e43e37a13996
This commit is contained in:
parent
51f5adc70b
commit
3881511c72
1
.gitignore
vendored
1
.gitignore
vendored
@ -69,4 +69,3 @@ tests/*.retry
|
||||
|
||||
# Git clones
|
||||
openstack-ansible-ops
|
||||
|
||||
|
9
Vagrantfile
vendored
9
Vagrantfile
vendored
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user