diff --git a/ansible/Vagrantfile b/ansible/Vagrantfile index 6dd86b0ee3bf5aba07d8d5a849878fa36228f313..9a693089b2881f66805e3082326a44785fa3c25f 100644 --- a/ansible/Vagrantfile +++ b/ansible/Vagrantfile @@ -7,10 +7,10 @@ Vagrant.configure("2") do |config| hub.vm.hostname = "hub" hub.vm.network "private_network", ip: "192.168.56.10" hub.vm.provider "virtualbox" do |v| - # This is high because in this scenarion, the hub will be responsible form runnin, both, TFS and Containerlab + # This is high because in this scenarion, the hub will be responsible form running, both TFS and Containerlab # Other configurations between the nodes can be used, but that will require to also change the playbook - v.memory = 16384 - v.cpus = 6 + v.memory = 8192 + v.cpus = 4 end hub.vm.provision "file", source: "~/.ssh/id_rsa.pub", destination: "/home/vagrant/.ssh/host.pub" hub.vm.provision "shell", inline: "cat /home/vagrant/.ssh/host.pub >> /home/vagrant/.ssh/authorized_keys"