From 6befd593c159f643d9632c260a031d16074a38bf Mon Sep 17 00:00:00 2001 From: Daniel Horak Date: Tue, 6 Feb 2024 07:40:07 +0100 Subject: [PATCH] extend timeout for ocp deployment via AI Signed-off-by: Daniel Horak --- ocs_ci/deployment/assisted_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocs_ci/deployment/assisted_installer.py b/ocs_ci/deployment/assisted_installer.py index d8b08422fbd..2bfc2d1d2fe 100644 --- a/ocs_ci/deployment/assisted_installer.py +++ b/ocs_ci/deployment/assisted_installer.py @@ -318,7 +318,7 @@ def install_cluster(self): logger.info("Started cluster installation") # wait for cluster installation success for sample in TimeoutSampler( - timeout=3600, sleep=300, func=self.api.get_cluster, cluster_id=self.id + timeout=7200, sleep=300, func=self.api.get_cluster, cluster_id=self.id ): status_per_hosts = [ h.get("progress", {}).get("installation_percentage", 0)