File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,24 @@ or, to use kvm2 as a default driver for `minikube start`:
76
76
minikube config set vm-driver kvm2
77
77
```
78
78
79
+ ### Troubleshoot
80
+
81
+ If minikube can't start, check if the kvm default network exists.
82
+
83
+ ``` shell
84
+ virsh net-list
85
+ Name State Autostart Persistent
86
+ ----------------------------------------------------------
87
+ default active yes yes
88
+ ```
89
+
90
+ In case the default network doesn't exist you can define it.
91
+
92
+ ``` shell
93
+ curl https://raw.githubusercontent.com/libvirt/libvirt/master/src/network/default.xml > kvm-default.xml
94
+ virsh net-define kvm-default.xml
95
+ ```
96
+
79
97
## Hyperkit driver
80
98
81
99
Install the [ hyperkit] ( http://github.com/moby/hyperkit ) VM manager using [ brew] ( https://brew.sh ) :
You can’t perform that action at this time.
0 commit comments