Skip to content

Commit c3f8090

Browse files
authored
Merge pull request #15556 from spowelljr/qemuRemovevExperimental
Remove experimental markings from QEMU driver
2 parents 833d632 + f4e0de7 commit c3f8090

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pkg/minikube/registry/drvs/qemu2/qemu2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func init() {
4848
Config: configure,
4949
Status: status,
5050
Default: true,
51-
Priority: registry.Experimental,
51+
Priority: registry.Default,
5252
}); err != nil {
5353
panic(fmt.Sprintf("register failed: %v", err))
5454
}

site/content/en/docs/drivers/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To do so, we use the [Docker Machine](https://github.com/docker/machine) library
1717
* [Docker]({{<ref "docker.md">}}) - container-based (preferred)
1818
* [KVM2]({{<ref "kvm2.md">}}) - VM-based (preferred)
1919
* [VirtualBox]({{<ref "virtualbox.md">}}) - VM
20-
* [QEMU]({{<ref "qemu.md">}}) - VM (experimental)
20+
* [QEMU]({{<ref "qemu.md">}}) - VM
2121
* [None]({{<ref "none.md">}}) - bare-metal
2222
* [Podman]({{<ref "podman.md">}}) - container (experimental)
2323
* [SSH]({{<ref "ssh.md">}}) - remote ssh
@@ -30,7 +30,7 @@ To do so, we use the [Docker Machine](https://github.com/docker/machine) library
3030
* [VirtualBox]({{<ref "virtualbox.md">}}) - VM
3131
* [Parallels]({{<ref "parallels.md">}}) - VM
3232
* [VMware Fusion]({{<ref "vmware.md">}}) - VM
33-
* [QEMU]({{<ref "qemu.md">}}) - VM (experimental)
33+
* [QEMU]({{<ref "qemu.md">}}) - VM
3434
* [SSH]({{<ref "ssh.md">}}) - remote ssh
3535

3636
## Windows

site/content/en/docs/drivers/qemu.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,7 @@ minikube start supports some qemu specific flags:
3434
The QEMU driver has two networking options, `user` & `socket_vmnet`.
3535

3636
{{% tabs %}}
37-
{{% tab "user - limited functionality" %}}
38-
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.
39-
{{% /tab %}}
40-
{{% tab "socket_vmnet - experimental/needs installation" %}}
37+
{{% tab "socket_vmnet - needs installation" %}}
4138

4239
### Requirements
4340

@@ -57,6 +54,9 @@ minikube start --driver qemu --network socket_vmnet
5754

5855
The `socket_vmnet` network is a dedicated network and supports the `minikube service` and `minikube tunnel` commands.
5956
{{% /tab %}}
57+
{{% tab "user - limited functionality" %}}
58+
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.
59+
{{% /tab %}}
6060
{{% /tabs %}}
6161

6262
## Known Issues

0 commit comments

Comments
 (0)