kubeadm-ts-guide: add entry about centos and docker 1.13.87 (#11534)

* kubeadm-ts-guide: add entry about centos and docker 1.13.87

* Copyedit for clarity
This commit is contained in:
Lubomir I. Ivanov 2018-12-06 00:36:15 +02:00 committed by Kubernetes Prow Robot
parent 783226a86f
commit 1b5415d36a
1 changed files with 20 additions and 0 deletions

View File

@ -226,4 +226,24 @@ Disabling SELinux or setting `allowPrivilegeEscalation` to `true` can compromise
the security of your cluster.
{{< /warning >}}
## etcd pods restart continually
If you encounter the following error:
```
rpc error: code = 2 desc = oci runtime error: exec failed: container_linux.go:247: starting container process caused "process_linux.go:110: decoding init error from pipe caused \"read parent: connection reset by peer\""
```
this issue appears if you run CentOS 7 with Docker 1.13.1.87.
This version of Docker can prevent the kubelet from executing into the etcd container.
To work around the issue, choose one of these options:
- Roll back to an earlier version of Docker, such as 1.13.1-75
- Install one of the more recent recommended versions, such as 18.06:
```bash
yum install docker-ce-18.06.1.ce-3.el7.x86_64
```
{{% /capture %}}