diff --git a/pkg/minikube/registry/drvs/qemu2/qemu2.go b/pkg/minikube/registry/drvs/qemu2/qemu2.go index d5264136c402..cb16192d0890 100644 --- a/pkg/minikube/registry/drvs/qemu2/qemu2.go +++ b/pkg/minikube/registry/drvs/qemu2/qemu2.go @@ -48,7 +48,7 @@ func init() { Config: configure, Status: status, Default: true, - Priority: registry.Experimental, + Priority: registry.Default, }); err != nil { panic(fmt.Sprintf("register failed: %v", err)) } diff --git a/site/content/en/docs/drivers/_index.md b/site/content/en/docs/drivers/_index.md index 6744c03ff377..7f9aacda7778 100644 --- a/site/content/en/docs/drivers/_index.md +++ b/site/content/en/docs/drivers/_index.md @@ -17,7 +17,7 @@ To do so, we use the [Docker Machine](https://github.com/docker/machine) library * [Docker]({{}}) - container-based (preferred) * [KVM2]({{}}) - VM-based (preferred) * [VirtualBox]({{}}) - VM -* [QEMU]({{}}) - VM (experimental) +* [QEMU]({{}}) - VM * [None]({{}}) - bare-metal * [Podman]({{}}) - container (experimental) * [SSH]({{}}) - remote ssh @@ -30,7 +30,7 @@ To do so, we use the [Docker Machine](https://github.com/docker/machine) library * [VirtualBox]({{}}) - VM * [Parallels]({{}}) - VM * [VMware Fusion]({{}}) - VM -* [QEMU]({{}}) - VM (experimental) +* [QEMU]({{}}) - VM * [SSH]({{}}) - remote ssh ## Windows diff --git a/site/content/en/docs/drivers/qemu.md b/site/content/en/docs/drivers/qemu.md index 7aa926d94edd..c1b1fe8f58d0 100644 --- a/site/content/en/docs/drivers/qemu.md +++ b/site/content/en/docs/drivers/qemu.md @@ -34,10 +34,7 @@ minikube start supports some qemu specific flags: The QEMU driver has two networking options, `user` & `socket_vmnet`. {{% tabs %}} -{{% tab "user - limited functionality" %}} -The `user` network is not a dedicated network, it doesn't support some networking commands such as `minikube service` and `minikube tunnel`, and its IP address is not reachable from the host. -{{% /tab %}} -{{% tab "socket_vmnet - experimental/needs installation" %}} +{{% tab "socket_vmnet - needs installation" %}} ### Requirements @@ -57,6 +54,9 @@ minikube start --driver qemu --network socket_vmnet The `socket_vmnet` network is a dedicated network and supports the `minikube service` and `minikube tunnel` commands. {{% /tab %}} +{{% tab "user - limited functionality" %}} +The `user` network is not a dedicated network, it doesn't support some networking commands such as `minikube service` and `minikube tunnel`, and its IP address is not reachable from the host. +{{% /tab %}} {{% /tabs %}} ## Known Issues