From 3d9fb8c2081df310960d7c90d5854c5b7862a9bf Mon Sep 17 00:00:00 2001 From: Alok Bhatt Date: Tue, 16 Mar 2021 06:04:33 +0000 Subject: [PATCH] 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 --- bin/prepare-common-templates | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 -- 2.16.6