Merge pull request #5129 from MiguelMoll/patch-1

Provide example of using minikube with kvm
pull/5148/head
Thomas Strömberg 2019-08-20 10:08:23 -07:00 committed by GitHub
commit 4a421bd4f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

View File

@ -27,3 +27,16 @@ virt-host-validate
curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-kvm2 \
&& sudo install docker-machine-driver-kvm2 /usr/local/bin/
```
## Usage
To explicitly start minikube with KVM:
```shell
minikube start --vm-driver=kvm2
```
To make KVM the default driver:
```shell
minikube config set vm-driver kvm2
```