Merge pull request #11119 from medyagh/faq

site: update FAQ
pull/11143/head
Medya Ghazizadeh 2021-04-19 11:36:47 -07:00 committed by GitHub
commit aa97c589b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 38 additions and 0 deletions

View File

@ -6,6 +6,44 @@ description: >
Questions that come up regularly
---
## How to run an older Kubernetes version with minikube ?
You do not need to download an older minikube to run an older kubernetes version.
You can create a Kubenretes cluster with any version you desire using `--kubernetes-version` flag.
Example:
```bash
minikube start --kubernetes-version=v1.15.0
```
## Docker Driver: How to set the cgroup manager minikube uses?
By default minikube uses the `cgroupfs` cgroup manager for the Kubernetes clusters, if you are on a system with a systemd cgroup manager, this could cause conflicts.
To use `systemd` cgroup manager, run:
```bash
minikube start --force-systemd=true
```
## How to run minikube with Docker driver if existing cluster is VM?
If you have an existing cluster with a VM driver (virtualbox, hyperkit, KVM,...).
First please ensure your Docker service is running and then you need to either delete the existing cluster and create one
```bash
minikube delete
minikube start --driver=docker
```
Alternatively, if you want to keep your existing cluster you can create a second cluster with a different profile name. (example p1)
```bash
minikube start -p p1 --driver=docker
```
## Does minikube support IPv6?
minikube currently doesn't support IPv6. However, it is on the [roadmap]({{< ref "/docs/contrib/roadmap.en.md" >}}).