Commit 6e53c2d0 authored by David José Araújo Ferreira's avatar David José Araújo Ferreira
Browse files

Change VM requirements

parent 0b094d75
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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"