Skip to content

Commit

Permalink
Merge pull request #9293 from dahorak/extend-ai-ocp-deployment-timeout
Browse files Browse the repository at this point in the history
Extend timeout for ocp deployment via Assisted Installer
  • Loading branch information
petr-balogh authored Feb 6, 2024
2 parents b172a16 + 6befd59 commit 04834ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocs_ci/deployment/assisted_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 04834ce

Please sign in to comment.