Home Lab Proxmox Synology and K3S Part 2
In this second part of the blog series we are going to install K3S on all of our VMs. We will also leverage the Synology CSI driver and test it out at the end. Firstly, we want to be able to connect to all 3 VMs seamlessly from my Windows Ubuntu WSL on my laptop. We can use this method to push our public key on to the VMs. Create a file called server.list with the IP addresses of the 3 VMs. vi server.list 192.168.0.80 192.168.0.81 192.168.0.82 ... Next run this script to copy your public key onto the VMs. #!/bin/bash while IFS= read -r server; do ssh-copy-id -i ~/.ssh/id_rsa.pub "$server" done < servers.list INSTALLING K3S We are going to disable the default servicelb loadbalancer and Traefik ingress controller and use Metallb instead. Also it is a good idea to disable local storage. I actually forgot this in my setup so later on…