From: moksh.baweja Date: Mon, 15 Sep 2025 21:17:13 +0000 (+0530) Subject: Fix the helm package installation X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=cd193ee7a47db8230ab11a2e1cc44170726875fb;p=aiml-fw%2Faimlfw-dep.git Fix the helm package installation Helm package installation with baltocdn returns "403 Forbidden". Github issue reference https://github.com/helm/helm/issues/31229. Using Installation Script with Helm version 3.18.6 support various OS. Issue-Id: AIMLFW-245 Change-Id: Ie62174b2cc4a922aedc4c0be8251df5b8fc70109 Signed-off-by: moksh.baweja --- diff --git a/tools/helm/install_helm.sh b/tools/helm/install_helm.sh index 23259c5..5afacfe 100755 --- a/tools/helm/install_helm.sh +++ b/tools/helm/install_helm.sh @@ -16,8 +16,6 @@ # # ================================================================================== #Reference: https://helm.sh/docs/intro/install/ -curl https://baltocdn.com/helm/signing.asc | sudo apt-key add - -sudo apt-get install apt-transport-https --yes -echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list -sudo apt-get update -sudo apt-get install helm +curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/refs/heads/release-3.18/scripts/get-helm-3 +chmod 700 get_helm.sh +./get_helm.sh --version 3.18.6