mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-16 09:48:57 +03:00
* Build now functional * Use ssh option to reduce questions * Use IPVS * Further e2e observations * Tidy up * RAM and CPU adjustments
6 lines
179 B
Bash
6 lines
179 B
Bash
#!/bin/bash
|
|
|
|
# Enable password auth in sshd so we can use ssh-copy-id
|
|
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/' /etc/ssh/sshd_config
|
|
systemctl restart sshd
|