Various fixes

This commit is contained in:
Guillaume
2023-06-14 23:57:26 +02:00
parent 3769192fec
commit 29415f77d9
4 changed files with 6 additions and 5 deletions

View File

@ -21,7 +21,7 @@ checkup() {
while :
do
pinfo "Checking availability of node $host..."
if true | ssh root@${hosts[$host]};
if true | sshcmd root@${hosts[$host]};
then
pinfo "VM $host is up!"
break
@ -39,7 +39,7 @@ checkup() {
start_control_plane() {
for host in ${!hosts[*]}; do
ssh root@${hosts[$host]} << EOF
sshcmd root@${hosts[$host]} << EOF
if ls /etc/kubernetes/manifests.static/* &>/dev/null ; then
mv /etc/kubernetes/manifests.static/* /var/lib/kubelet/manifests/
fi