From afcc4bb389eb695fad2c9125d7728c61ab81d6dd Mon Sep 17 00:00:00 2001 From: eding Date: Tue, 21 Jul 2026 23:16:42 +0200 Subject: [PATCH] fix: allow talos installation to complete --- internal/bootstrap/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/bootstrap/bootstrap.go b/internal/bootstrap/bootstrap.go index 99d7cfb..1cf9c54 100644 --- a/internal/bootstrap/bootstrap.go +++ b/internal/bootstrap/bootstrap.go @@ -90,7 +90,7 @@ func (r Runner) Run() error { } func waitForTalosReboot(dir string, cfg config.Config) error { - deadline := time.Now().Add(2 * time.Minute) + deadline := time.Now().Add(5 * time.Minute) offline := false for time.Now().Before(deadline) { err := utils.RunCommandQuietInDir(dir, "talosctl", "get", "machinestatus", "--talosconfig=./clusterconfig/talosconfig", "--endpoints="+cfg.Talos.BootstrapEndpoint, "--nodes="+cfg.Talos.BootstrapNode)