Install specific version of kubernetes-helm using Homebrew

5/14/2020

I am trying to install a specific version of Kubernetes helm on MAC-OS

I have tried brew install kubernetes-helm@2.16.0;

Error No available formula with the name "kubernetes-helm@2.16.0"

I found that I need to do

brew `install helm@2` 
brew link --force helm@2

But this install the latest version of 2 which is

Client: &version.Version{SemVer:"v2.16.7", GitCommit:"5f2584fd3d35552c4af26036f0c464191287986b", GitTreeState:"clean"}

Server: &version.Version{SemVer:"v2.16.7", GitCommit:"5f2584fd3d35552c4af26036f0c464191287986b", GitTreeState:"clean"}

I don't want to install 2.16.7

On windows, I can do choco install Kubernetes-helm --version=2.16.0

-- San Jaisy
homebrew
kubernetes
kubernetes-helm

0 Answers