You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* none (Runs the Kubernetes components on the host and not in a virtual machine. You need to be running Linux and to have {{< glossary_tooltip term_id="docker">}} installed.)
Minikube also supports a `--vm-driver=none` option that runs the Kubernetes components on the host and not in a VM.
77
+
Minikube also supports a `--driver=none` option that runs the Kubernetes components on the host and not in a VM.
78
78
Using this driver requires [Docker](https://www.docker.com/products/docker-desktop) and a Linux environment but not a hypervisor.
79
79
80
80
If you're using the `none` driver in Debian or a derivative, use the `.deb` packages for
@@ -83,7 +83,7 @@ You can download `.deb` packages from [Docker](https://www.docker.com/products/d
83
83
84
84
{{< caution >}}
85
85
The `none` VM driver can result in security and data loss issues.
86
-
Before using `--vm-driver=none`, consult [this documentation](https://minikube.sigs.k8s.io/docs/reference/drivers/none/) for more information.
86
+
Before using `--driver=none`, consult [this documentation](https://minikube.sigs.k8s.io/docs/reference/drivers/none/) for more information.
87
87
{{< /caution >}}
88
88
89
89
Minikube also supports a `vm-driver=podman` similar to the Docker driver. Podman run as superuser privilege (root user) is the best way to ensure that your containers have full access to any feature available on your system.
@@ -214,12 +214,12 @@ To confirm successful installation of both a hypervisor and Minikube, you can ru
214
214
215
215
{{< note >}}
216
216
217
-
For setting the `--vm-driver` with `minikube start`, enter the name of the hypervisor you installed in lowercase letters where `<driver_name>` is mentioned below. A full list of `--vm-driver` values is available in [specifying the VM driver documentation](https://kubernetes.io/docs/setup/learning-environment/minikube/#specifying-the-vm-driver).
217
+
For setting the `--driver` with `minikube start`, enter the name of the hypervisor you installed in lowercase letters where `<driver_name>` is mentioned below. A full list of `--driver` values is available in [specifying the VM driver documentation](https://kubernetes.io/docs/setup/learning-environment/minikube/#specifying-the-vm-driver).
218
218
219
219
{{< /note >}}
220
220
221
221
```shell
222
-
minikube start --vm-driver=<driver_name>
222
+
minikube start --driver=<driver_name>
223
223
```
224
224
225
225
Once `minikube start` finishes, run the command below to check the status of the cluster:
0 commit comments