Skip to content

Commit 7f748f8

Browse files
authored
Merge pull request #1668 from zyyw/1.14.0
[cherry-pick] fix: update KUBECTL_VERSION && HELM_VERSION, and use wget instead of curl (#1664)
2 parents 7d045cb + 335fe49 commit 7f748f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/e2e/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM alpine:3
22

3-
ARG KUBECTL_VERSION="v1.21.1"
4-
ARG HELM_VERSION="v3.9.2"
5-
RUN apk add bash curl bind-tools \
6-
&& curl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl \
7-
&& curl https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz -o - | tar -xzO linux-amd64/helm > /usr/local/bin/helm && chmod +x /usr/local/bin/helm
3+
ARG KUBECTL_VERSION="v1.27.1"
4+
ARG HELM_VERSION="v3.13.3"
5+
RUN apk add bash bind-tools \
6+
&& wget https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -P /usr/local/bin/ && chmod +x /usr/local/bin/kubectl \
7+
&& wget -O - https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar -xzO linux-amd64/helm > /usr/local/bin/helm && chmod +x /usr/local/bin/helm

0 commit comments

Comments
 (0)