From 47a99f6488068b7ccf9e6857d783ab885aec4664 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sun, 24 Mar 2019 00:47:24 +0200 Subject: [PATCH] Added Helm binary, Bash completion. --- .bash_completion.d/helm | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 .bash_completion.d/helm diff --git a/.bash_completion.d/helm b/.bash_completion.d/helm new file mode 100644 index 0000000..6280023 --- /dev/null +++ b/.bash_completion.d/helm @@ -0,0 +1 @@ +command -v helm >/dev/null && eval "$(helm completion bash)" diff --git a/Makefile b/Makefile index 99bf1f8..024b4a4 100644 --- a/Makefile +++ b/Makefile @@ -79,3 +79,7 @@ binaries: .local/share/bfg/bfg.jar .local/bin/rke .local/bin/docker-machine .loc .local/bin/docker-machine-driver-kvm2: $(download) https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 chmod +x $@ + +.local/bin/helm: + $(curl) https://storage.googleapis.com/kubernetes-helm/helm-v2.13.1-$(os)-$(arch).tar.gz | tar -C .local/bin --wildcards --strip-components=1 -zx */helm + chmod +x $@ -- GitLab