From 6e53c2d0b013dec5d776e955ee3fdc8aad4bfc3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Ara=C3=BAjo?= <davidaraujo@av.it.pt> Date: Mon, 8 Jul 2024 14:12:10 +0100 Subject: [PATCH] Change VM requirements --- ansible/Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/Vagrantfile b/ansible/Vagrantfile index 6dd86b0ee..9a693089b 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" -- GitLab