From 5e806b4bedaea3ee7b583d2f722e2a7c0193f621 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Thu, 7 Mar 2024 21:05:15 +0800 Subject: [PATCH] update helmversion -> 0.162.0 --- oci/base/alpine-chart-builder/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/oci/base/alpine-chart-builder/Dockerfile b/oci/base/alpine-chart-builder/Dockerfile index 7e88c16..4c6459b 100644 --- a/oci/base/alpine-chart-builder/Dockerfile +++ b/oci/base/alpine-chart-builder/Dockerfile @@ -5,7 +5,8 @@ FROM alpine:latest ENV VERSION=3.11.1 ENV BASE_URL="https://get.helm.sh" ENV KUBECTL_VERSION="v1.21.0" -ENV HELMFILE_VERSION="v0.139.9" +ENV HELMFILE_BASE_URL="https://github.com/helmfile/helmfile/releases/download/" +ENV HELMFILE_VERSION="0.162.0" RUN apk add --update --no-cache openssh bash wget make curl jq unzip zip git ca-certificates RUN case `uname -m` in \ @@ -17,8 +18,8 @@ RUN case `uname -m` in \ helm plugin install https://github.com/databus23/helm-diff ; \ helm plugin install https://github.com/chartmuseum/helm-push.git ; \ helm plugin install https://github.com/belitre/helm-push-artifactory-plugin.git --version v1.0.2 ; \ - wget -qO /usr/bin/helmfile https://github.com/roboll/helmfile/releases/download/${HELMFILE_VERSION}/helmfile_linux_${ARCH} && chmod +x /usr/bin/helmfile; \ - helmfile init --force ; \ + wget https://github.com/helmfile/helmfile/releases/download/v0.162.0/helmfile_0.162.0_linux_amd64.tar.gz && tar -xvpf helmfile_0.162.0_linux_amd64.tar.gz && mv helmfile /usr/bin/helmfile && chmod +x /usr/bin/helmfile ; \ + helmfile init --force ; \ rm -rf *.tar.gz || true #ADD ca.crt /usr/share/ca-certificates/mozilla/Lets_Encrypt_ca.crt