From 373cfde0a5442547b97e7ff6036f5c9b2dc49422 Mon Sep 17 00:00:00 2001 From: Stephan Butler Date: Wed, 29 Oct 2025 23:37:25 +0200 Subject: [PATCH] fix(chartvalidator): Helm is now pinned to 3.19.0 --- chartvalidator/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/chartvalidator/Dockerfile b/chartvalidator/Dockerfile index 5cd5d39..994bcc4 100644 --- a/chartvalidator/Dockerfile +++ b/chartvalidator/Dockerfile @@ -14,11 +14,11 @@ RUN apk add --no-cache curl bash # Install python3 and pip RUN apk add --no-cache python3 py3-pip openssl git -# Install Helm -RUN curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 - -RUN chmod 700 get_helm.sh -RUN ./get_helm.sh +RUN curl -fsSL https://get.helm.sh/helm-v3.19.0-linux-amd64.tar.gz -o helm.tar.gz && \ + tar -zxvf helm.tar.gz && \ + mv linux-amd64/helm /usr/local/bin/helm && \ + chmod +x /usr/local/bin/helm && \ + rm helm.tar.gz # Install helm unittest RUN helm plugin install https://github.com/helm-unittest/helm-unittest.git