Skip to content

Commit

Permalink
Merge pull request #4379 from josedonizetti/add-kvm-default-network-doc
Browse files Browse the repository at this point in the history
Add kvm default network documentation
  • Loading branch information
tstromberg committed May 30, 2019
2 parents 722f501 + a8b0485 commit b56c5ab
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit b56c5ab

Please sign in to comment.