From e54d8ec7f9be3acdd4c7ca95aeb9924a0f53a73b Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Fri, 16 Apr 2021 14:51:20 -0700 Subject: [PATCH] kuberentes version --- site/content/en/docs/faq/_index.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/site/content/en/docs/faq/_index.md b/site/content/en/docs/faq/_index.md index fbef1d4ae3..977ac19af8 100644 --- a/site/content/en/docs/faq/_index.md +++ b/site/content/en/docs/faq/_index.md @@ -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" >}}).