-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
95 lines (95 loc) · 3.95 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
Vagrant.configure("2") do |config|
config.vm.define "alma93" do |x|
x.vm.box = "generic/alma9"
x.vm.box_version = "4.3.12"
x.vm.synced_folder ".", "/vagrant", disabled: true # Guest additions too old
x.vm.network "private_network", ip: "192.168.56.163"
x.vm.provision "host-setup", type: "shell" do |shell|
shell.path = "scripts/os-prep/rocky93.sh"
end
x.vm.provision "podman-deploy", type: "shell" do |shell|
shell.path = "scripts/podman-prep.sh"
end
x.vm.provision "test", type: "shell" do |shell|
shell.path = "scripts/test-case.sh"
end
end
config.vm.define "rocky93" do |x|
x.vm.box = "generic/rocky9"
x.vm.box_version = "4.3.12"
x.vm.synced_folder ".", "/vagrant", disabled: true # Guest additions too old
x.vm.network "private_network", ip: "192.168.56.164"
x.vm.provision "host-setup", type: "shell" do |shell|
shell.path = "scripts/os-prep/rocky93.sh"
end
x.vm.provision "podman-deploy", type: "shell" do |shell|
shell.path = "scripts/podman-prep.sh"
end
x.vm.provision "test", type: "shell" do |shell|
shell.path = "scripts/test-case.sh"
end
end
config.vm.define "ubuntu2310" do |x|
x.vm.box = "generic/ubuntu2310"
x.vm.box_version = "4.3.12"
x.vm.synced_folder ".", "/vagrant", disabled: true # Guest additions too old
x.vm.network "private_network", ip: "192.168.56.165"
x.vm.provision "host-setup", type: "shell" do |shell|
shell.path = "scripts/os-prep/ubuntu2310.sh"
end
x.vm.provision "podman-deploy", type: "shell" do |shell|
shell.path = "scripts/podman-prep.sh"
end
x.vm.provision "test", type: "shell" do |shell|
shell.path = "scripts/test-case.sh"
end
end
config.vm.define "fedora39" do |x|
x.vm.box = "generic/fedora39"
x.vm.box_version = "4.3.12"
x.vm.synced_folder ".", "/vagrant", disabled: true # Guest additions too old
x.vm.network "private_network", ip: "192.168.56.166"
x.ssh.password = "vagrant"
x.vm.provision "host-setup", type: "shell" do |shell|
shell.path = "scripts/os-prep/fedora39.sh"
end
x.vm.provision "podman-deploy", type: "shell" do |shell|
shell.path = "scripts/podman-prep.sh"
end
x.vm.provision "test", type: "shell" do |shell|
shell.path = "scripts/test-case.sh"
end
end
config.vm.define "fedoraraw" do |x|
x.vm.box = "generic/fedora-rawhide"
x.vm.box_version = "4.3.12"
x.vm.synced_folder ".", "/vagrant", disabled: true # Guest additions too old
x.vm.network "private_network", ip: "192.168.56.167"
x.ssh.password = "vagrant"
x.vm.provision "host-setup", type: "shell" do |shell|
shell.path = "scripts/os-prep/fedorarawhide.sh"
end
x.vm.provision "podman-deploy", type: "shell" do |shell|
shell.path = "scripts/podman-prep.sh"
end
x.vm.provision "test", type: "shell" do |shell|
shell.path = "scripts/test-case.sh"
end
end
config.vm.define "susetumbleweed" do |x|
x.vm.box = "opensuse/Tumbleweed.x86_64"
x.vm.box_version = "1.0.20240415"
x.vm.synced_folder ".", "/vagrant", disabled: true # Guest additions too old
x.vm.network "private_network", ip: "192.168.56.168"
x.ssh.password = "vagrant"
x.vm.provision "host-setup", type: "shell" do |shell|
shell.path = "scripts/os-prep/susetumbleweed.sh"
end
x.vm.provision "podman-deploy", type: "shell" do |shell|
shell.path = "scripts/podman-prep.sh"
end
x.vm.provision "test", type: "shell" do |shell|
shell.path = "scripts/test-case.sh"
end
end
end