From: aravind.est Date: Sun, 18 May 2025 20:25:27 +0000 (+0100) Subject: Increase init job timeout for smo installation X-Git-Tag: l-release~11 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=f9cba179504dda9766563ce76a6cef6f3468e758;p=it%2Fdep.git 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 --- 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() {