This commit is contained in:
IluaAir
2025-05-30 18:22:12 +03:00
commit 59cf25f145
5 changed files with 402 additions and 0 deletions

17
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,17 @@
Vagrant.configure("2") do |config|
config.vm.box = "spox/ubuntu-arm" # Выбрать образ для х86
config.vm.provision "ansible_local" do |ansible|
ansible.become = true
ansible.playbook = "provisioning/playbook.yml"
ansible.config_file = "provisioning/ansible.cfg"
end
config.vm.provider :vmware_desktop do |hypervisor| # Заменить :virtualbox
hypervisor.gui = true
hypervisor.cpus = 2
hypervisor.memory = 4096
# hypervisor.vmx["ethernet0.virtualdev"] = "vmxnet3"
# hypervisor.ssh_info_public = true
hypervisor.linked_clone = false
hypervisor.vmx["vhv.enable"] = "TRUE" # Для аппаратной виртуализации
end
end