Skip to content

Commit

Permalink
Increase the timeout for cluster-tools installation
Browse files Browse the repository at this point in the history
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 <oliver.horecny@tietoevry.com>
  • Loading branch information
horecoli committed Apr 18, 2024
1 parent e019f6d commit aae0843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster_tools.cr
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit aae0843

Please sign in to comment.