Loading ansible/Vagrantfile +3 −3 Original line number Diff line number Diff line Loading @@ -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" Loading Loading
ansible/Vagrantfile +3 −3 Original line number Diff line number Diff line Loading @@ -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" Loading