From f39d7928bfb0d3f0350d9e5d5984e8843841eea9 Mon Sep 17 00:00:00 2001 From: Douglas Hellinger Date: Tue, 14 Apr 2020 08:18:18 +0800 Subject: [PATCH] Put tiller on path for use in helm-tiller plugin (#1198) Put tiller binary on the path in helm v2.X container image so that helm-tiller plugin will use it instead of duplicating the download of helm tarball and performing version check. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a16c1e00..3b104249 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN wget ${HELM_LOCATION}/${HELM_FILENAME} && \ sha256sum ${HELM_FILENAME} | grep -q "${HELM_SHA256}" && \ echo Extracting ${HELM_FILENAME}... && \ tar zxvf ${HELM_FILENAME} && mv /linux-amd64/helm /usr/local/bin/ && \ + mv /linux-amd64/tiller /usr/local/bin/ && \ rm ${HELM_FILENAME} && rm -r /linux-amd64 # using the install documentation found at https://kubernetes.io/docs/tasks/tools/install-kubectl/