Skip to content

Add kvm default network documentation #4379

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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