-
Notifications
You must be signed in to change notification settings - Fork 9
/
Vagrantfile
79 lines (73 loc) · 1.78 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- mode: ruby -*-
# vi: set ft=ruby ts=2 sw=2 tw=0 et :
boxes = [
# {
# :name => "ubuntu-1204",
# :box => "bento/ubuntu-12.04",
# :ip => '10.0.0.11',
# :cpu => "50",
# :ram => "256"
# },
# {
# :name => "ubuntu-1404",
# :box => "bento/ubuntu-14.04",
# :ip => '10.0.0.12',
# :cpu => "50",
# :ram => "256"
# },
# {
# :name => "ubuntu-1604",
# :box => "bento/ubuntu-16.04",
# :ip => '10.0.0.13',
# :cpu => "50",
# :ram => "256"
# },
# {
# :name => "debian-7",
# :box => "bento/debian-7",
# :ip => '10.0.0.14',
# :cpu => "50",
# :ram => "256"
# },
# {
# :name => "debian-8",
# :box => "bento/debian-8",
# :ip => '10.0.0.15',
# :cpu => "50",
# :ram => "256"
# },
{
:name => "debian-9",
:box => "chriswayg/debian-9.4.0-x86_64",
:ip => '10.0.0.16',
:cpu => "50",
:ram => "2048"
},
# {
# :name => "rancheros",
# :box => "chriswayg/RancherOS",
# :ip => '10.0.0.17',
# :cpu => "50",
# :ram => "2048"
# },
]
role = File.basename(File.expand_path(File.dirname(__FILE__)))
Vagrant.configure("2") do |config|
boxes.each do |box|
config.vm.define box[:name] do |vms|
vms.vm.box = box[:box]
#vms.vm.hostname = "#{role}-#{box[:name]}"
vms.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--cpuexecutioncap", box[:cpu]]
v.customize ["modifyvm", :id, "--memory", box[:ram]]
end
#vms.vm.network :private_network, ip: box[:ip]
vms.vm.provision :ansible do |ansible|
ansible.playbook = "tests/vagrant.yml"
ansible.verbose = "vv"
ansible.compatibility_mode = "2.0"
ansible.extra_vars = { ansible_python_interpreter:"/usr/bin/python3" }
end
end
end
end