Reduce number of cores per VM

This commit is contained in:
Sam A. 2023-04-19 16:13:33 +02:00
parent 9384176bf2
commit 4ffa5a6afa
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 1 additions and 1 deletions

2
ansible/Vagrantfile vendored
View File

@ -11,7 +11,7 @@ Vagrant.configure("2") do |config|
player.vm.network :private_network, ip: "192.168.56.#{20 + player_id}"
player.vm.provider :virtualbox do |vb|
vb.cpus = 4
vb.cpus = 2
vb.memory = 8192
end