Skip to content
Snippets Groups Projects
Commit 6e53c2d0 authored by David José Araújo Ferreira's avatar David José Araújo Ferreira
Browse files

Change VM requirements

parent 0b094d75
No related branches found
No related tags found
1 merge request!240Draft: Resolve: "Ansible for configuring a TFS-compatible MicroK8s cluster"
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment