From 314fed658e38c08143fd310b5dba75bd688be4e8 Mon Sep 17 00:00:00 2001 From: Chris Wayne Date: Tue, 8 Oct 2024 11:48:36 -0400 Subject: [PATCH] Bump helm to 3.16.1; bump plugins to latest Signed-off-by: Chris Wayne Signed-off-by: Brad Davidson --- package/Dockerfile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/package/Dockerfile b/package/Dockerfile index d5dcf3d..a5bbe15 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.20 as extract RUN apk add -U curl ca-certificates ARG ARCH -RUN curl -sL https://get.helm.sh/helm-v3.15.3-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin +RUN curl -sL https://get.helm.sh/helm-v3.16.1-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin COPY entry /usr/bin/ FROM golang:1.23-alpine3.20 as plugins @@ -9,16 +9,12 @@ RUN apk add -U curl ca-certificates build-base binutils-gold ARG ARCH COPY --from=extract /usr/bin/helm /usr/bin/helm RUN mkdir -p /go/src/github.com/k3s-io/helm-set-status && \ - curl -sL https://github.com/k3s-io/helm-set-status/archive/refs/tags/v0.2.0.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/k3s-io/helm-set-status && \ + curl -sL https://github.com/k3s-io/helm-set-status/archive/refs/tags/v0.3.0.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/k3s-io/helm-set-status && \ cd /go/src/github.com/k3s-io/helm-set-status && \ - go get -u ./... && \ - go mod tidy && \ make install RUN mkdir -p /go/src/github.com/helm/helm-mapkubeapis && \ - curl -sL https://github.com/k3s-io/helm-mapkubeapis/archive/refs/tags/v0.4.1-k3s1.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/helm/helm-mapkubeapis && \ + curl -sL https://github.com/helm/helm-mapkubeapis/archive/refs/tags/v0.5.2.tar.gz | tar xvzf - --strip-components=1 -C /go/src/github.com/helm/helm-mapkubeapis && \ cd /go/src/github.com/helm/helm-mapkubeapis && \ - go get -u ./... && \ - go mod tidy && \ make && \ mkdir -p /root/.local/share/helm/plugins/helm-mapkubeapis && \ cp -vr /go/src/github.com/helm/helm-mapkubeapis/plugin.yaml \