Skip to content

Instantly share code, notes, and snippets.

@thephw
Created December 13, 2018 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thephw/c52b402fbbcd21b7dd7eda61bf854b7a to your computer and use it in GitHub Desktop.
Save thephw/c52b402fbbcd21b7dd7eda61bf854b7a to your computer and use it in GitHub Desktop.

Minikube VirtualBox on OS X Mojave Issues

Apple and Oracle can't see eye to eye on security so all the current Virtual Box Installers (5.2/6.0RC1) do not work. I actually blame oracle as they won't take simple steps to keep their software up to date and compatible, but that is neither here nor there.

Expected Results

VirtualBox will install correctly.

Actual Results

VirtualBox install will fail for all current version.

Work Around

Don't use virtualbox, try out hyperkit via steps here.

# 1. Install Docker from https://store.docker.com/editions/community/docker-ce-desktop-mac
# 2. Install minikube
brew update && brew cask install minikube
# 3. Install docker machine driver hyperkit
brew update && brew install docker-machine-driver-hyperkit
# 4. Set hyperkit as minikube driver
minikube config set vm-driver hyperkit
# 5. Start/Stop minikube
minikube start
minikube stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment