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@2But 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