From: Alok Bhatt Date: Tue, 16 Mar 2021 06:04:33 +0000 (+0000) Subject: Handled the delay in chartmuseum server initialization X-Git-Tag: f-release~58^2 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=3d9fb8c2081df310960d7c90d5854c5b7862a9bf;p=it%2Fdep.git Handled the delay in chartmuseum server initialization Wait for chartmuseum server init & graceful exit after 5 retries Issue-Id: RIC-762 Signed-off-by: Alok Bhatt Change-Id: I0c465549531521650db7352935e2dbd771f32ed9 --- diff --git a/bin/prepare-common-templates b/bin/prepare-common-templates index bfdd3d27..87432606 100755 --- a/bin/prepare-common-templates +++ b/bin/prepare-common-templates @@ -35,6 +35,18 @@ then fi fi +# Check if servecm plugin is ready to serve request +command='curl --silent --output /dev/null http://127.0.0.1:8879/charts' +for i in $(seq 1 5) +do $command && s=0 && break || s=$? && echo "Error connecting chartmuseum server. Retrying after 5s" && sleep 5; +done + +if [ $s -gt 0 ] +then + echo "Cmd to test chartmuseum failed with ($s): $command" + exit $s +fi + # Package common templates and serve it using Helm local repo if [ $IS_HELM3 ] then