From a3cee551bcffaeeb5c55624901494eda74dca974 Mon Sep 17 00:00:00 2001 From: Stewart-YU Date: Wed, 10 Jan 2018 16:24:59 +0800 Subject: [PATCH 1/2] Update troubleshooting-kubeadm.md make sentence more clearly --- docs/setup/independent/troubleshooting-kubeadm.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/setup/independent/troubleshooting-kubeadm.md b/docs/setup/independent/troubleshooting-kubeadm.md index ca58416f0a..e47376d081 100644 --- a/docs/setup/independent/troubleshooting-kubeadm.md +++ b/docs/setup/independent/troubleshooting-kubeadm.md @@ -56,8 +56,12 @@ This may be caused by a number of problems. The most common are: misconfiguration: kubelet cgroup driver: "systemd" is different from docker cgroup driver: "cgroupfs" ``` - you will need to fix the cgroup driver problem by following intstructions + There are two common ways to fix the cgroup driver problem: + + 1. Install docker again following intstructions [here](/docs/setup/independent/install-kubeadm/#installing-docker). + 1. Change the kubelet config to match the Docker cgroup driver manually, you can refer to `Errors on CentOS when setting up masters` part in this page. + - control plane Docker containers are crashlooping or hanging. You can check this by running `docker ps` and investigating each container by running `docker logs`. From ee7824bf2a5f4dd5053082d73382e2dcb964e74b Mon Sep 17 00:00:00 2001 From: Qiming Date: Thu, 11 Jan 2018 10:07:26 +0800 Subject: [PATCH 2/2] Update troubleshooting-kubeadm.md --- docs/setup/independent/troubleshooting-kubeadm.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/setup/independent/troubleshooting-kubeadm.md b/docs/setup/independent/troubleshooting-kubeadm.md index e47376d081..9aa8a4f0ef 100644 --- a/docs/setup/independent/troubleshooting-kubeadm.md +++ b/docs/setup/independent/troubleshooting-kubeadm.md @@ -60,7 +60,9 @@ This may be caused by a number of problems. The most common are: 1. Install docker again following intstructions [here](/docs/setup/independent/install-kubeadm/#installing-docker). - 1. Change the kubelet config to match the Docker cgroup driver manually, you can refer to `Errors on CentOS when setting up masters` part in this page. + 1. Change the kubelet config to match the Docker cgroup driver manually, you can refer to + [Errors on CentOS when setting up masters](#errors-on-centos-when-setting-up-masters) + for detailed instructions. - control plane Docker containers are crashlooping or hanging. You can check this by running `docker ps` and investigating each container by running `docker logs`.