From de43c38111c51a04a08ac34810dd73e22a66d7aa Mon Sep 17 00:00:00 2001 From: Kostas Livieratos Date: Wed, 29 Jul 2020 12:24:48 +0300 Subject: [PATCH] Install helm inside dockerfile --- Dockerfile | 1 + entrypoint.sh | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77d6e52..60169d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN chmod +x /usr/bin/aws-iam-authenticator RUN wget https://get.helm.sh/helm-v3.2.4-linux-amd64.tar.gz -O - | tar -xzO linux-amd64/helm > /usr/local/bin/helm RUN chmod +x /usr/local/bin/helm +RUN helm plugin install https://github.com/zendesk/helm-secrets COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]: \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh index c751c46..59a28c0 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,8 +3,6 @@ echo ${KUBE_CONFIG_DATA} | base64 -d > kubeconfig export KUBECONFIG=kubeconfig -helm plugin install https://github.com/zendesk/helm-secrets - result="$($1)" status=$?