From e1040c2aa1a9df100c81847557de92699607ebfc Mon Sep 17 00:00:00 2001 From: amnk Date: Tue, 26 Jun 2018 10:42:47 +0200 Subject: [PATCH] Add helm-secrets plugin to Dockerfile Closes: #176 --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 812814ed..56925bba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN make static-linux FROM alpine:3.7 -RUN apk add --no-cache ca-certificates git bash +RUN apk add --no-cache ca-certificates git bash curl ARG HELM_VERSION=v2.9.1 ARG HELM_LOCATION="https://kubernetes-helm.storage.googleapis.com" @@ -21,7 +21,8 @@ RUN wget ${HELM_LOCATION}/${HELM_FILENAME} && \ rm ${HELM_FILENAME} && rm -r /linux-amd64 RUN mkdir -p "$(helm home)/plugins" -RUN helm plugin install https://github.com/databus23/helm-diff +RUN helm plugin install https://github.com/databus23/helm-diff && \ + helm plugin install https://github.com/futuresimple/helm-secrets COPY --from=builder /go/src/github.com/roboll/helmfile/dist/helmfile_linux_amd64 /usr/local/bin/helmfile