From f9cba179504dda9766563ce76a6cef6f3468e758 Mon Sep 17 00:00:00 2001 From: "aravind.est" Date: Sun, 18 May 2025 21:25:27 +0100 Subject: [PATCH] Increase init job timeout for smo installation SMO installation fails randomly because of the slowness of the resource allocation/dependent containers. This will increase the job waiting timeout before helm decides to consider that as a failure. Issue-ID: NONRTRIC-1020 Change-Id: I88d5a57628108511bc7d44326bd29be012661f7b Signed-off-by: aravind.est --- smo-install/scripts/sub-scripts/install-smo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smo-install/scripts/sub-scripts/install-smo.sh b/smo-install/scripts/sub-scripts/install-smo.sh index ef79a5ff..6ddfe23a 100755 --- a/smo-install/scripts/sub-scripts/install-smo.sh +++ b/smo-install/scripts/sub-scripts/install-smo.sh @@ -29,7 +29,7 @@ MODE=$2 if [ "$MODE" == "dev" ]; then echo "Installing SMO in dev mode" - helm install --debug oran-smo local/smo --namespace smo -f $OVERRIDEYAML + helm install --debug oran-smo local/smo --namespace smo -f $OVERRIDEYAML --timeout 15m else echo "Installing SMO in release mode" # This following should be modified once the charts are uploaded and available in the nexus repository @@ -37,7 +37,7 @@ else # helm repo add smo https://nexus3.o-ran-sc.org/repository/smo-helm-snapshots/ # helm repo update # helm install oran-smo smo/smo --namespace nonrtric -f $OVERRIDEYAML --create-namespace - helm install oran-smo local/smo --namespace smo -f $OVERRIDEYAML + helm install oran-smo local/smo --namespace smo -f $OVERRIDEYAML --timeout 15m fi check_for_secrets() { -- 2.16.6