Skip to content

Commit 264e3f9

Browse files
committed
Properly quote entrypoint args; update helm versions
For rancher/rke2#948 Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
1 parent b02c0ea commit 264e3f9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

entry

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ helm_content_decode
124124
if [ "$1" != "delete" ]; then
125125
helm_repo_init
126126
fi
127-
helm_update $@
127+
helm_update "$@"
128128

package/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
FROM alpine:3.12 as extract
22
RUN apk add -U curl ca-certificates
33
ARG ARCH
4-
RUN curl https://get.helm.sh/helm-v2.16.10-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
4+
RUN curl 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.3.1-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
6+
RUN curl https://get.helm.sh/helm-v3.5.4-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin
77
RUN mv /usr/bin/helm /usr/bin/helm_v3
88

99
FROM alpine:3.12

0 commit comments

Comments
 (0)