From 87552d57e668710f7cdd7bf9699138ade32426ff Mon Sep 17 00:00:00 2001 From: Hanjo Meinhardt Date: Thu, 6 Dec 2018 21:47:04 +0100 Subject: [PATCH] add sops to image --- .drone.yml | 3 ++- Dockerfile | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index c01d2b7..cbafaf5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -28,4 +28,5 @@ matrix: - v1.12.2 HELM_VERSION: - v2.11.0 - + SOPS_VERSION: + - 3.2.0 diff --git a/Dockerfile b/Dockerfile index 96f6985..8d98746 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \