This commit is contained in:
2025-02-25 08:41:28 -05:00
parent fdf311d2c7
commit b5fbeeb53b
3 changed files with 58 additions and 0 deletions

14
p2/Vagrantfile vendored Normal file
View File

@ -0,0 +1,14 @@
Vagrant.configure("2") do |config|
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.vm.box = "debian/buster64"
config.vm.define "cchauvetS" do |server|
server.vm.hostname = "cchauvetS"
server.vm.network "private_network", :ip => "192.168.56.110"
server.vm.provider "libvirt" do |lv|
lv.cpus = "8"
lv.memory = "10240"
end
server.vm.provision "shell", path: "scripts/minikube.sh"
end
end