1
0

added helm to image

This commit is contained in:
2018-08-26 13:45:24 +02:00
parent d926063a6e
commit b0efec1052
2 changed files with 12 additions and 2 deletions
+7 -1
View File
@@ -5,6 +5,12 @@ RUN apk add -U --no-cache openssl
# download and install kubectl
ARG KUBECTL_VERSION
RUN curl -L https://storage.googleapis.com/kubernetes-release/release/$KUBECTL_VERSION/bin/linux/amd64/kubectl -o /usr/bin/kubectl \
&& chmod +x /usr/bin/kubectl
ARG HELM_VERSION
RUN curl -LO https://storage.googleapis.com/kubernetes-helm/helm-$HELM_VERSION-linux-amd64.tar.gz \
&& tar xfvz helm-$HELM_VERSION-linux-amd64.tar.gz \
&& mv linux-amd64/helm /usr/bin/helm \
&& rm -rf linux-amd64 #\
&& rm helm-$HELM_VERSION-linux-amd64.tar.gz