From 2887df4afbafe15d25b6ddf2c658374dcc47d1cd Mon Sep 17 00:00:00 2001
From: Mohammed Ismail <mohammed.ismail@openairinterface.org>
Date: Tue, 3 Aug 2021 12:33:17 +0200
Subject: [PATCH] CI: delay increased for 5gcn deployment on cluster to give
 more time for service to become active

Signed-off-by: Mohammed Ismail <mohammed.ismail@openairinterface.org>
---
 ci-scripts/helmDeploy.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci-scripts/helmDeploy.py b/ci-scripts/helmDeploy.py
index 13fce9b..28c8f83 100644
--- a/ci-scripts/helmDeploy.py
+++ b/ci-scripts/helmDeploy.py
@@ -181,7 +181,7 @@ class ClusterDeploy:
 			podName = res2.group(0)
 			isRunning = False
 			count = 0
-			while count < 6 and isRunning == False:
+			while count < 12 and isRunning == False:
 				time.sleep(5)
 				if imageName == 'mysql':
 					res = subprocess.check_output(f'oc exec {podName} -i -t -- mysqladmin -u root --password=linux ping || true', stderr=subprocess.STDOUT, shell=True, universal_newlines=True)
-- 
GitLab