From 2e57beb448ed7feec88589e6db33bd20c9d6a8c0 Mon Sep 17 00:00:00 2001 From: KUOKA Yusuke Date: Tue, 4 Jun 2019 23:53:11 +0900 Subject: [PATCH] feat: bundle helm-s3 and helm-git into container images (#651) Resolves #435 (Git as chart repository) Resolves #220 (S3 as chart repository) Resolves #436 (About bundling helm plugins) A lot of thanks to @aslafy-z for authoring the awesome helm-git plugin and contributing it to the community! --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b4febe44..020d8e91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,9 @@ RUN wget ${HELM_LOCATION}/${HELM_FILENAME} && \ RUN mkdir -p "$(helm home)/plugins" RUN helm plugin install https://github.com/databus23/helm-diff && \ - helm plugin install https://github.com/futuresimple/helm-secrets + helm plugin install https://github.com/futuresimple/helm-secrets && \ + helm plugin install https://github.com/hypnoglow/helm-s3.git && \ + helm plugin install https://github.com/aslafy-z/helm-git.git COPY --from=builder /workspace/helmfile/dist/helmfile_linux_amd64 /usr/local/bin/helmfile