|
|
|
@ -8,6 +8,11 @@ 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
|
|
|
|
|
|
|
|
|
|
# install mozilla sops
|
|
|
|
|
ARG SOPS_VERSION
|
|
|
|
|
RUN curl -L https://github.com/mozilla/sops/releases/download/$SOPS_VERSION/sops-$SOPS_VERSION.linux -o /usr/bin/sops \
|
|
|
|
|
&& chmod +x /usr/bin/sops
|
|
|
|
|
|
|
|
|
|
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 \
|
|
|
|
|