Forked from pabianj/gist:b62686ea21090e785e188e6f6ff1f57f
Created
October 30, 2019 00:16
-
-
Save sravankumar777/1e33c55e0f97886e625a348aba0fb26c to your computer and use it in GitHub Desktop.
downgrade minikube
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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