Created
April 14, 2019 20:18
-
-
Save mcharo/d0ad9b9dce1b4d282f5ecbb60165bd51 to your computer and use it in GitHub Desktop.
minikube + hyperkit
This file contains hidden or 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
| #!/bin/sh | |
| # install minikube | |
| brew cask install minikube | |
| # install and modify permission on hyperkit driver | |
| brew install hyperkit docker-machine-driver-hyperkit | |
| sudo chown root:wheel /usr/local/bin/docker-machine-driver-hyperkit | |
| sudo chmod u+s /usr/local/bin/docker-machine-driver-hyperkit | |
| # start minikube with hyperkit driver | |
| minikube start --logtostderr --v=3 --vm-driver=hyperkit | |
| # initially I got the error: Temporary Error: Could not find an IP address | |
| # running `minikube delete` followed by the above minikube start command resolved the issue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment