Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sravankumar777/1e33c55e0f97886e625a348aba0fb26c to your computer and use it in GitHub Desktop.
Save sravankumar777/1e33c55e0f97886e625a348aba0fb26c to your computer and use it in GitHub Desktop.
downgrade minikube
Using these instructions as an example, I forced an install of 0.25.2 in the meantime:
https://devforgalaxy.github.io/en/2016/11/05/use-homebrew-cask-to-downgrad-or-install-en.html
minikube stop
minikube delete
brew cask uninstall --force minikube
brew cask edit minikube
#See below for file
brew cask install minikube
Using this file:
cask 'minikube' do
version '0.25.2'
sha256 'dc5b00c4a06e8160bd607732c9a2294598d803716e353293b4463cc2c9539eec'
# storage.googleapis.com/minikube was verified as official when first introduced to the cask
url "https://storage.googleapis.com/minikube/releases/v#{version}/minikube-darwin-amd64"
appcast 'https://github.com/kubernetes/minikube/releases.atom',
checkpoint: 'dc5b00c4a06e8160bd607732c9a2294598d803716e353293b4463cc2c9539eec'
name 'Minikube'
homepage 'https://github.com/kubernetes/minikube'
depends_on formula: 'kubernetes-cli'
container type: :naked
binary 'minikube-darwin-amd64', target: 'minikube'
zap trash: '~/.minikube'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment