kuberentes version

pull/11119/head
Medya Gh 2021-04-16 14:51:20 -07:00
parent 84b2bc8f41
commit e54d8ec7f9
1 changed files with 21 additions and 0 deletions

View File

@ -6,6 +6,27 @@ description: >
Questions that come up regularly
---
## How to run an older Kubernetes version with minikube ?
You can create a minikube cluster with exact Kubernetes version you desire using
for Example to run an old Kubernetes version, you do NOT need to download an older minikube version. you can simply do :
```bash
minikube start --kubernetes-version=v1.15.0
```
## Docker Driver: How to run minikube change cgroup manager used by minikube?
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
```
## Does minikube support IPv6?
minikube currently doesn't support IPv6. However, it is on the [roadmap]({{< ref "/docs/contrib/roadmap.en.md" >}}).