From d44f1bcf209b24f3ea22b2827ba88ccf6ae4406e Mon Sep 17 00:00:00 2001 From: czichy Date: Mon, 13 Mar 2023 12:24:09 +0200 Subject: [PATCH] RIC-966 updating chartmuseum and docker refs Issue-ID: RIC-966 Signed-off-by: czichy Change-Id: Iefe2fa3c8c90153f0436e0d3d28b3fac2b6d44df --- bin/install_common_templates_to_helm.sh | 8 ++++++++ bin/install_k8s_and_helm.sh | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/bin/install_common_templates_to_helm.sh b/bin/install_common_templates_to_helm.sh index 09d597c..d7328e4 100755 --- a/bin/install_common_templates_to_helm.sh +++ b/bin/install_common_templates_to_helm.sh @@ -21,6 +21,14 @@ helm plugin install https://github.com/jdolitsky/helm-servecm eval $(helm env |grep HELM_REPOSITORY_CACHE) echo ${HELM_REPOSITORY_CACHE} +# servecm can download chartmuseum binary, but the hardcoded location does not work anymore +# so, we download it now before starting servecm, so that it's available when servecm +# tries to start the chartmuseum binary +curl -LO https://get.helm.sh/chartmuseum-v0.15.0-linux-386.tar.gz +tar xzvf chartmuseum-v0.15.0-linux-386.tar.gz +chmod +x ./linux-386/chartmuseum +cp ./linux-386/chartmuseum /usr/local/bin + nohup helm servecm --port=8879 --context-path=/charts --storage local --storage-local-rootdir $HELM_REPOSITORY_CACHE/local/ <