From a53622546f07d5f124c58fce31e2f975a5c16691 Mon Sep 17 00:00:00 2001 From: Benjamin Howell Date: Fri, 12 Jul 2019 18:18:47 -0400 Subject: [PATCH] Updates to README.md and docs/drivers.md to document parallels vm-driver support --- README.md | 1 + docs/drivers.md | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/README.md b/README.md index 4d3994dc1..0e285191b 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ Other drivers which are not yet part of our continuous integration system are: * [hyperv](https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#hyperV-driver) * [vmware](https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#vmware-unified-driver) +* [parallels](https://github.com/kubernetes/minikube/blob/master/docs/drivers.md#parallels-driver) ## Quick Start diff --git a/docs/drivers.md b/docs/drivers.md index 103b7ec56..804daf1f5 100644 --- a/docs/drivers.md +++ b/docs/drivers.md @@ -13,6 +13,7 @@ the host PATH: * [Hyperkit](#hyperkit-driver) * [HyperV](#hyperv-driver) * [VMware](#vmware-unified-driver) +* [Parallels](#parallels-driver) ## KVM2 driver @@ -214,6 +215,30 @@ and run minikube as usual: minikube start ``` +## Parallels driver + +This driver is useful for users who own Parallels Desktop for Mac that do not have VT-x hardware support required by the hyperkit driver. + +Pre-requisites: Parallels Desktop for Mac + +Install the [Parallels docker-machine driver](https://github.com/Parallels/docker-machine-parallels) using [brew](https://brew.sh): + +```shell +brew install docker-machine-parallels +``` + +To use the driver: + +```shell +minikube start --vm-driver parallels +``` + +or, to use parallels as a default driver for minikube: + +```shell +minikube config set vm-driver parallels +``` + ## Troubleshooting minikube is currently unable to display the error message received back from the VM driver. Users can however reveal the error by passing `--alsologtostderr -v=8` to `minikube start`. For instance: @@ -229,3 +254,4 @@ Found binary path at /usr/local/bin/docker-machine-driver-kvm2 Launching plugin server for driver kvm2 Error starting plugin binary: fork/exec /usr/local/bin/docker-machine-driver-kvm2: exec format error ``` + -- GitLab