Add kvm default network documentation

pull/4379/head
josedonizetti 2019-05-30 14:14:52 -03:00
parent 722f501283
commit a8b0485551
1 changed files with 18 additions and 0 deletions

View File

@ -76,6 +76,24 @@ or, to use kvm2 as a default driver for `minikube start`:
minikube config set vm-driver kvm2
```
### Troubleshoot
If minikube can't start, check if the kvm default network exists.
```shell
virsh net-list
Name State Autostart Persistent
----------------------------------------------------------
default active yes yes
```
In case the default network doesn't exist you can define it.
```shell
curl https://raw.githubusercontent.com/libvirt/libvirt/master/src/network/default.xml > kvm-default.xml
virsh net-define kvm-default.xml
```
## Hyperkit driver
Install the [hyperkit](http://github.com/moby/hyperkit) VM manager using [brew](https://brew.sh):