File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:3
2
2
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
You can’t perform that action at this time.
0 commit comments