You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/zh/docs/tasks/administer-cluster/migrating-from-dockershim/check-if-dockershim-deprecation-affects-you.md
+22-13Lines changed: 22 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,35 +52,44 @@ dependency on Docker:
52
52
当用了替代的容器运行时之后,Docker 命令可能不工作,甚至产生意外的输出。
53
53
这才是判定你是否依赖于 Docker 的方法。
54
54
55
-
<!--
56
-
1. Make sure no privileged Pods execute Docker commands.
57
-
2. Check that scripts and apps running on nodes outside of Kubernetes
55
+
<!--
56
+
1. Make sure no privileged Pods execute Docker commands (like `docker ps`),
57
+
restart the Docker service (commands such as `systemctl restart docker.service`),
58
+
or modify Docker-specific files such as `/etc/docker/daemon.json`.
59
+
1. Check for any private registries or image mirror settings in the Docker
60
+
configuration file (like `/etc/docker/daemon.json`). Those typically need to
61
+
be reconfigured for another container runtime.
62
+
1. Check that scripts and apps running on nodes outside of your Kubernetes
58
63
infrastructure do not execute Docker commands. It might be:
59
64
- SSH to nodes to troubleshoot;
60
65
- Node startup scripts;
61
66
- Monitoring and security agents installed on nodes directly.
62
-
3. Third-party tools that perform above mentioned privileged operations. See
67
+
1. Third-party tools that perform above mentioned privileged operations. See
63
68
[Migrating telemetry and security agents from dockershim](/docs/tasks/administer-cluster/migrating-from-dockershim/migrating-telemetry-and-security-agents)
64
69
for more information.
65
-
4. Make sure there is no indirect dependencies on dockershim behavior.
70
+
1. Make sure there is no indirect dependencies on dockershim behavior.
66
71
This is an edge case and unlikely to affect your application. Some tooling may be configured
67
72
to react to Docker-specific behaviors, for example, raise alert on specific metrics or search for
68
73
a specific log message as part of troubleshooting instructions.
69
74
If you have such tooling configured, test the behavior on test
0 commit comments