Skip to content

Commit de9835e

Browse files
authored
feat(rootfs/Dockerfile): update helm to v3.50 (#262)
1 parent e4f5cad commit de9835e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

rootfs/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV ANSIBLE_VERSION=2.10.3 \
1010
GO_VERSION=1.15.5 \
1111
GLIDE_VERSION=v0.13.3 \
1212
GLIDE_HOME=/root \
13-
HELM_VERSION=v2.16.12 \
13+
HELM_VERSION=3.5.0 \
1414
KUBECTL_VERSION=v1.16.3 \
1515
ETCDCTL_VERSION=v3.1.8 \
1616
GOLANGCI_LINT_VERSION=v1.31.0 \
@@ -72,8 +72,9 @@ RUN \
7272
&& curl -sSL https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
7373
&& chmod +x /usr/local/bin/kubectl \
7474
&& mkdir -p ${GOPATH}/src/k8s.io/helm \
75-
&& curl -sSL https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz \
76-
| tar -vxz -C /usr/local/bin --strip=1 \
75+
&& curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 \
76+
&& chmod 700 get_helm.sh && ./get_helm.sh --version v${HELM_VERSION} \
77+
&& rm ./get_helm.sh \
7778
&& mkdir -p /go/bin \
7879
&& curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh \
7980
&& curl -sSL https://aka.ms/downloadazcopy-v10-linux | tar -vxz -C /usr/local/bin --strip=1 \

0 commit comments

Comments
 (0)