Skip to content

Instantly share code, notes, and snippets.

@sethvincent
Created July 2, 2019 23:56
Show Gist options
  • Save sethvincent/273763ca945865ffbe0a8d76a8be83db to your computer and use it in GitHub Desktop.
Save sethvincent/273763ca945865ffbe0a8d76a8be83db to your computer and use it in GitHub Desktop.
brew install docker-machine-driver-hyperkit
brew cask install minikube

To use the driver:

minikube start --vm-driver hyperkit

or, to use hyperkit as a default driver for minikube:

minikube config set vm-driver hyperkit

You may see this message:

💣  Unable to start VM: create: Error with pre-create check: "docker-machine-driver-hyperkit needs to run with elevated permissions. Please run the following command, then try again: sudo chown root:wheel /usr/local/bin/docker-machine-driver-hyperkit && sudo chmod u+s /usr/local/bin/docker-machine-driver-hyperkit"

And need to give specific permissions to 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

Turn existing docker-compose files into kubernetes config

brew install kompose
kompose up

fails becuase we have some stuff in our docker-compose file that is incompatible

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