adjust ssh check loop time from sleep 2 to 3, to reduce the number of outputs

This commit is contained in:
Karim Naufal 2022-02-18 01:13:28 +01:00
parent 7d2701048a
commit 1aae4b3b09
3 changed files with 6 additions and 6 deletions

View File

@ -44,14 +44,14 @@ resource "hcloud_server" "agents" {
# Issue a reboot command and wait for the node to reboot # Issue a reboot command and wait for the node to reboot
provisioner "local-exec" { provisioner "local-exec" {
command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 5" command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 3"
} }
provisioner "local-exec" { provisioner "local-exec" {
command = <<-EOT command = <<-EOT
until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null
do do
echo "Waiting for MicroOS to reboot and become available..." echo "Waiting for MicroOS to reboot and become available..."
sleep 2 sleep 3
done done
EOT EOT
} }

View File

@ -42,14 +42,14 @@ resource "hcloud_server" "first_control_plane" {
# Issue a reboot command and wait for the node to reboot # Issue a reboot command and wait for the node to reboot
provisioner "local-exec" { provisioner "local-exec" {
command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 5" command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 3"
} }
provisioner "local-exec" { provisioner "local-exec" {
command = <<-EOT command = <<-EOT
until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null
do do
echo "Waiting for MicroOS to reboot and become available..." echo "Waiting for MicroOS to reboot and become available..."
sleep 2 sleep 3
done done
EOT EOT
} }

View File

@ -43,14 +43,14 @@ resource "hcloud_server" "control_planes" {
# Issue a reboot command and wait for the node to reboot # Issue a reboot command and wait for the node to reboot
provisioner "local-exec" { provisioner "local-exec" {
command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 5" command = "ssh ${local.ssh_args} root@${self.ipv4_address} '(sleep 2; reboot)&'; sleep 3"
} }
provisioner "local-exec" { provisioner "local-exec" {
command = <<-EOT command = <<-EOT
until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null until ssh ${local.ssh_args} -o ConnectTimeout=2 root@${self.ipv4_address} true 2> /dev/null
do do
echo "Waiting for MicroOS to reboot and become available..." echo "Waiting for MicroOS to reboot and become available..."
sleep 2 sleep 3
done done
EOT EOT
} }