From cd193ee7a47db8230ab11a2e1cc44170726875fb Mon Sep 17 00:00:00 2001 From: "moksh.baweja" Date: Tue, 16 Sep 2025 02:47:13 +0530 Subject: [PATCH] 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 --- tools/helm/install_helm.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 -- 2.16.6