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/en/docs/tasks/administer-cluster/migrating-from-dockershim/check-if-dockershim-deprecation-affects-you.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Check whether Dockershim deprecation affects you
3
-
content_type: task
3
+
content_type: task
4
4
reviewers:
5
5
- SergeyKanzhelev
6
6
weight: 20
@@ -26,16 +26,21 @@ When alternative container runtime is used, executing Docker commands may either
26
26
not work or yield unexpected output. This is how you can find whether you have a
27
27
dependency on Docker:
28
28
29
-
1. Make sure no privileged Pods execute Docker commands.
30
-
2. Check that scripts and apps running on nodes outside of Kubernetes
29
+
1. Make sure no privileged Pods execute Docker commands (like `docker ps`),
30
+
restart the Docker service (commands such as `systemctl restart docker.service`),
31
+
or modify Docker-specific files such as `/etc/docker/daemon.json`.
32
+
1. Check for any private registries or image mirror settings in the Docker
33
+
configuration file (like `/etc/docker/daemon.json`). Those typically need to
34
+
be reconfigured for another container runtime.
35
+
1. Check that scripts and apps running on nodes outside of your Kubernetes
31
36
infrastructure do not execute Docker commands. It might be:
32
37
- SSH to nodes to troubleshoot;
33
38
- Node startup scripts;
34
39
- Monitoring and security agents installed on nodes directly.
35
-
3. Third-party tools that perform above mentioned privileged operations. See
40
+
1. Third-party tools that perform above mentioned privileged operations. See
36
41
[Migrating telemetry and security agents from dockershim](/docs/tasks/administer-cluster/migrating-from-dockershim/migrating-telemetry-and-security-agents)
37
42
for more information.
38
-
4. Make sure there is no indirect dependencies on dockershim behavior.
43
+
1. Make sure there is no indirect dependencies on dockershim behavior.
39
44
This is an edge case and unlikely to affect your application. Some tooling may be configured
40
45
to react to Docker-specific behaviors, for example, raise alert on specific metrics or search for
41
46
a specific log message as part of troubleshooting instructions.
0 commit comments