How to install helm using homebrew?

5/23/2019

I'm trying to install helm package manager for Kubernetes and getting some errors. I'm using MacOS Mojave

I did brew install kubernetes-helm and I'm getting the below Errors:

Error: No available formula with the name "kubernetes-helm" 
==> Searching for a previously deleted formula (in the last month)...
Error: No previously deleted formula found.
==> Searching for similarly named formulae...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps

Anu suggestions on getting helm using homebrew succesfully?

-- Kingz
kubernetes
kubernetes-helm

1 Answer

5/24/2019

Try a full url for the correct kubernetes-helm.rb file

brew unlink kubernetes-helm
brew install https://github.com/Homebrew/homebrew-core/blob/master/Formula/kubernetes-helm.rb
-- A_Suh
Source: StackOverflow