Skip to content

Commit 1a13e88

Browse files
committed
Bump helm v3 version
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
1 parent 65f867c commit 1a13e88

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile.dapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM alpine:3.19
33
ARG DAPPER_HOST_ARCH
44
ENV ARCH $DAPPER_HOST_ARCH
55

6-
RUN apk -U add bash docker-cli git
6+
RUN apk -U add bash docker-cli docker-cli-buildx git
77
ENV DAPPER_ENV REPO TAG DRONE_TAG
88
ENV DAPPER_SOURCE /go/src/github.com/k3s-io/klipper-helm/
99
ENV DAPPER_OUTPUT ./bin ./dist

package/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM alpine:3.19 as extract
22
RUN apk add -U curl ca-certificates
33
ARG ARCH
4-
RUN curl https://get.helm.sh/helm-v2.17.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
4+
RUN curl -sL https://get.helm.sh/helm-v2.17.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
55
RUN mv /usr/bin/helm /usr/bin/helm_v2
6-
RUN curl https://get.helm.sh/helm-v3.14.2-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
6+
RUN curl -sL https://get.helm.sh/helm-v3.15.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
77
RUN mv /usr/bin/helm /usr/bin/helm_v3
88
COPY entry /usr/bin/
99

0 commit comments

Comments
 (0)