Merge pull request #3140 from madorn/patch-1

add brew install instructions for hyperkit
pull/3534/head
Thomas Strömberg 2019-01-15 16:42:53 -08:00 committed by GitHub
commit 00caba2aec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -83,7 +83,18 @@ minikube start --vm-driver kvm
The Hyperkit driver will eventually replace the existing xhyve driver. The Hyperkit driver will eventually replace the existing xhyve driver.
It is built from the minikube source tree, and uses [moby/hyperkit](http://github.com/moby/hyperkit) as a Go library. It is built from the minikube source tree, and uses [moby/hyperkit](http://github.com/moby/hyperkit) as a Go library.
To install the hyperkit driver: To install the hyperkit driver via brew:
```shell
brew install docker-machine-driver-hyperkit
# docker-machine-driver-hyperkit need root owner and uid
sudo chown root:wheel /usr/local/opt/docker-machine-driver-hyperkit/bin/docker-machine-driver-hyperkit
sudo chmod u+s /usr/local/opt/docker-machine-driver-hyperkit/bin/docker-machine-driver-hyperkit
```
To install the hyperkit driver manually:
```shell ```shell
curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \ curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \