From aae0843486108a05289133631c094c93f68443ec Mon Sep 17 00:00:00 2001 From: horecoli Date: Thu, 18 Apr 2024 17:02:18 +0200 Subject: [PATCH] Increase the timeout for cluster-tools installation Since cluster-tools images are usually large, their installation typically takes more time than the default value of 180 seconds. This change increases the timeout to 300 seconds. Signed-off-by: horecoli --- cluster_tools.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster_tools.cr b/cluster_tools.cr index a3596b6a..8d28d632 100644 --- a/cluster_tools.cr +++ b/cluster_tools.cr @@ -233,7 +233,7 @@ module ClusterTools def self.wait_for_cluster_tools Log.info { "ClusterTools wait_for_cluster_tools" } - KubectlClient::Get.resource_wait_for_install("Daemonset", "cluster-tools", namespace: self.namespace!) + KubectlClient::Get.resource_wait_for_install("Daemonset", "cluster-tools", namespace: self.namespace!, wait_count: 300) # KubectlClient::Get.resource_wait_for_install("Daemonset", "cluster-tools-k8s", namespace: self.namespace) end