From 511bbfd293848a23c8c39041dc9c79a61dc36e0e Mon Sep 17 00:00:00 2001
From: "gioacchino.vino" <gioacchino.vino@infn.it>
Date: Mon, 4 Dec 2023 17:29:35 +0100
Subject: [PATCH] Decrease sampling state during deployment to 1 minute

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

diff --git a/tasks/1-create-deployment.yml b/tasks/1-create-deployment.yml
index 26af13d..fdc428e 100644
--- a/tasks/1-create-deployment.yml
+++ b/tasks/1-create-deployment.yml
@@ -36,12 +36,12 @@
     delay: 300
     timeout: 0
 
-- name:  Check the deployment status (every 5 mins)
+- name:  Check the deployment status (every 1 minute)
   command: orchent depshow --ojson "{{ deployment.uuid }}"
   register: depshow_output
   until: "'PROGRESS' not in depshow_output.stdout"
   retries: "{{ paas_ci_test.n_timeout_ticks }}"
-  delay: 300
+  delay: 60
   failed_when: "'error' in depshow_output.stdout"
 
 - set_fact:
-- 
GitLab