定位 发表于 2019-12-21 16:03:11

Warning:detected "cgroupfs" as the Docker cgroup driver

执行kubeadm init集群初始化时遇到:

: detected "cgroupfs" as the Docker cgroup driver. The recommended driver is "systemd".

[警告IsDockerSystemdCheck]:检测到“cgroupfs”作为Docker cgroup驱动程序。 推荐的驱动程序是“systemd”。

解决方法:修改docker

在/etc/docker下创建daemon.json并编辑:

mkdir /etc/docker/daemon.json
加入以下内容:

{
"exec-opts":["native.cgroupdriver=systemd"]
}


systemctl restart docker
systemctl status docker




页: [1]
查看完整版本: Warning:detected "cgroupfs" as the Docker cgroup driver