Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Helm is not needed in build tools image #1777

Merged
merged 1 commit into from
May 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions tools/build-tools.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,6 @@ RUN GO_VERSION=1.15.6 && \
tar -C /usr/local -xvzf go${GO_VERSION}.linux-amd64.tar.gz && \
rm -rf go${GO_VERSION}.linux-amd64.tar.gz

# Install helm/tiller
RUN HELM_VERSION=v2.16.1 && \
curl -LO https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz && \
helm_sha256=7eebaaa2da4734242bbcdced62cc32ba8c7164a18792c8acdf16c77abffce202 && \
echo "$helm_sha256 helm-${HELM_VERSION}-linux-amd64.tar.gz" | sha256sum -c - && \
tar xzvf helm-${HELM_VERSION}-linux-amd64.tar.gz && \
mv linux-amd64/helm /usr/local/bin && mv linux-amd64/tiller /usr/local/bin && \
rm -rf linux-amd64 helm-${HELM_VERSION}-linux-amd64.tar.gz && \
helm init --client-only

# Install kubectl
RUN apt-get update && apt-get install -y apt-transport-https && \
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && \
Expand Down