Skip to content

Instantly share code, notes, and snippets.

@mcharo
Created April 14, 2019 20:18
Show Gist options
  • Select an option

  • Save mcharo/d0ad9b9dce1b4d282f5ecbb60165bd51 to your computer and use it in GitHub Desktop.

Select an option

Save mcharo/d0ad9b9dce1b4d282f5ecbb60165bd51 to your computer and use it in GitHub Desktop.
minikube + hyperkit
#!/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