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:
parent
783226a86f
commit
1b5415d36a
|
@ -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 %}}
|
||||
|
|
Loading…
Reference in New Issue