Skip to content

Commit

Permalink
Merge pull request #15556 from spowelljr/qemuRemovevExperimental
Browse files Browse the repository at this point in the history
Remove experimental markings from QEMU driver
  • Loading branch information
medyagh authored Jan 17, 2023
2 parents 833d632 + f4e0de7 commit c3f8090
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pkg/minikube/registry/drvs/qemu2/qemu2.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand Down
4 changes: 2 additions & 2 deletions site/content/en/docs/drivers/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To do so, we use the [Docker Machine](https://github.com/docker/machine) library
* [Docker]({{<ref "docker.md">}}) - container-based (preferred)
* [KVM2]({{<ref "kvm2.md">}}) - VM-based (preferred)
* [VirtualBox]({{<ref "virtualbox.md">}}) - VM
* [QEMU]({{<ref "qemu.md">}}) - VM (experimental)
* [QEMU]({{<ref "qemu.md">}}) - VM
* [None]({{<ref "none.md">}}) - bare-metal
* [Podman]({{<ref "podman.md">}}) - container (experimental)
* [SSH]({{<ref "ssh.md">}}) - remote ssh
Expand All @@ -30,7 +30,7 @@ To do so, we use the [Docker Machine](https://github.com/docker/machine) library
* [VirtualBox]({{<ref "virtualbox.md">}}) - VM
* [Parallels]({{<ref "parallels.md">}}) - VM
* [VMware Fusion]({{<ref "vmware.md">}}) - VM
* [QEMU]({{<ref "qemu.md">}}) - VM (experimental)
* [QEMU]({{<ref "qemu.md">}}) - VM
* [SSH]({{<ref "ssh.md">}}) - remote ssh

## Windows
Expand Down
8 changes: 4 additions & 4 deletions site/content/en/docs/drivers/qemu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit c3f8090

Please sign in to comment.