[READ-ONLY] Mirror of https://github.com/maybeanerd/home-cluster. IAC for a kubernetes cluster hosted at home. status.cluster.diluz.io
hacktoberfest
1

Configure Feed

Select the types of activity you want to include in your feed.

docs: steps to set up ssh to nodes

Sebastian Di Luzio (Jul 6, 2025, 1:32 PM +0200) dcc96f24 8f37a5c5

+13
+13
local/nodes/ssh.md
··· 1 + ## generate ssh keys 2 + ssh-keygen -t ed25519 -b 256 -C "sebastian@diluz.io" 3 + 4 + use name cluster_rsa 5 + 6 + ## copy keys to nodes 7 + cat ~/.ssh/cluster_rsa.pub | ssh USER@HOST "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys" 8 + 9 + chmod 700 ~/.ssh && chmod 600 ~/.ssh/authorized_keys 10 + 11 + ensure that in /etc/ssh/sshd_config , PubkeyAuthentication is set to yes 12 + 13 + if changes were necessay, restart service sudo systemctl restart sshd