From 5ae6a4c7b13353689c8525e260f0c6328526060e Mon Sep 17 00:00:00 2001
From: "gioacchino.vino" <gioacchino.vino@infn.it>
Date: Mon, 25 Sep 2023 11:10:42 +0200
Subject: [PATCH] Increase deployment waiting time

---
 tasks/1-create-deployment.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tasks/1-create-deployment.yml b/tasks/1-create-deployment.yml
index 2699fe3..ac958c3 100644
--- a/tasks/1-create-deployment.yml
+++ b/tasks/1-create-deployment.yml
@@ -33,12 +33,12 @@
 - debug:
     var: deployment
 
-- name: Sleep for 60 seconds and timeout
+- name: Sleep for 300 seconds and timeout
   wait_for:
-    delay: 60
+    delay: 300
     timeout: 0
 
-- name:  Check the deployment status (every 5 mins)
+- name:  Check the deployment status (every 10 mins)
   command: orchent depshow --ojson "{{ deployment.uuid }}"
   register: depshow_output
   until: "'PROGRESS' not in depshow_output.stdout"
-- 
GitLab