Fix the helm package installation 17/14917/8
authormoksh.baweja <moksh.baweja@samsung.com>
Mon, 15 Sep 2025 21:17:13 +0000 (02:47 +0530)
committermoksh.baweja <moksh.baweja@samsung.com>
Thu, 18 Sep 2025 11:07:16 +0000 (16:37 +0530)
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 <moksh.baweja@samsung.com>
tools/helm/install_helm.sh

index 23259c5..5afacfe 100755 (executable)
@@ -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