Skip to content

Instantly share code, notes, and snippets.

@freiden
Last active August 26, 2017 20:57
Show Gist options
  • Save freiden/fd565362102c5b538db2c08859ba5603 to your computer and use it in GitHub Desktop.
Save freiden/fd565362102c5b538db2c08859ba5603 to your computer and use it in GitHub Desktop.
Installation of minikube on MacOS

1/ Install Docker for Mac through DMG

2/ Install minikube with Homebrew:

  • brew cask install minikube

3/ Install kubernetes-cli with Homebrew:

  • brew install kubectl

4/ Install xhyve driver:

  • brew install docker-machine-driver-xhyve
  • sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve
  • sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve

Test it: minikube start --vm-driver=xhyve minikube stop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment