Skip to content

Commit

Permalink
Add helm binary to skaffold (#2098)
Browse files Browse the repository at this point in the history
  • Loading branch information
jala-dx committed Aug 17, 2021
1 parent 9374490 commit 372b927
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions hack/dev/Dockerfile.skaffold
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ RUN curl -L "https://github.com/kubernetes-sigs/kustomize/releases/download/kust
chmod a+x kustomize && \
mv kustomize "/usr/local/bin/kustomize3.5.4"

# Install helm v3.4.2
RUN curl -L "https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz" -o /tmp/helm.tar.gz && \
tar -xzvf /tmp/helm.tar.gz && \
rm /tmp/helm.tar.gz && \
chmod a+x linux-amd64/helm && \
mv linux-amd64/helm "/usr/local/bin/helm3.4.2"

# Install krew
COPY ./deploy/install-krew.sh /install-krew.sh
RUN /install-krew.sh
Expand Down

0 comments on commit 372b927

Please sign in to comment.