File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
content/en/docs/tasks/configure-pod-container Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ The `spec` of a static Pod cannot refer to other API objects
42
42
43
43
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
44
44
45
- This page assumes you're using {{< glossary_tooltip term_id="docker " >}} to run Pods,
45
+ This page assumes you're using {{< glossary_tooltip term_id="containerd " >}} to run Pods,
46
46
and that your nodes are running the Fedora operating system.
47
47
Instructions for other distributions or Kubernetes installations may vary.
48
48
@@ -156,7 +156,7 @@ already be running.
156
156
You can view running containers (including static Pods) by running (on the node):
157
157
` ` ` shell
158
158
# Run this command on the node where the kubelet is running
159
- docker ps
159
+ crictl ps
160
160
` ` `
161
161
162
162
The output might be something like:
@@ -213,7 +213,7 @@ automatically:
213
213
# Run these commands on the node where the kubelet is running
214
214
docker stop f6d05272b57e # replace with the ID of your container
215
215
sleep 20
216
- docker ps
216
+ crictl ps
217
217
` ` `
218
218
` ` `
219
219
CONTAINER ID IMAGE COMMAND CREATED ...
@@ -230,11 +230,11 @@ The running kubelet periodically scans the configured directory (`/etc/kubelet.d
230
230
#
231
231
mv /etc/kubelet.d/static-web.yaml /tmp
232
232
sleep 20
233
- docker ps
233
+ crictl ps
234
234
# You see that no nginx container is running
235
235
mv /tmp/static-web.yaml /etc/kubelet.d/
236
236
sleep 20
237
- docker ps
237
+ crictl ps
238
238
` ` `
239
239
` ` `
240
240
CONTAINER ID IMAGE COMMAND CREATED ...
You can’t perform that action at this time.
0 commit comments