- ⚙️ Configure
terraform.tfvars
- 🔧 Run
terraform apply
- 💾 Start hoarding
curl -sLS https://get.k3sup.dev | sh
sudo install k3sup /usr/local/bin/
k3sup install --local --local-path ~/.kube/config
- Enable ipv4 systctls (required for wireguard)
Edit the k3s config
sudo vi /etc/systemd/system/k3s.service
Add this line under ExecStart
'--kubelet-arg=allowed-unsafe-sysctls=net.ipv4.*' \
Restart k3s
sudo systemctl daemon-reload
sudo systemctl restart k3s.service