Skip to content

Commit 40afa49

Browse files
author
Chris Short
committed
Update static-pod.md
Fixes Issue #31394
1 parent 564baf1 commit 40afa49

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/en/docs/tasks/configure-pod-container/static-pod.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The `spec` of a static Pod cannot refer to other API objects
4242

4343
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
4444

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,
4646
and that your nodes are running the Fedora operating system.
4747
Instructions for other distributions or Kubernetes installations may vary.
4848

@@ -156,7 +156,7 @@ already be running.
156156
You can view running containers (including static Pods) by running (on the node):
157157
```shell
158158
# Run this command on the node where the kubelet is running
159-
docker ps
159+
crictl ps
160160
```
161161
162162
The output might be something like:
@@ -213,7 +213,7 @@ automatically:
213213
# Run these commands on the node where the kubelet is running
214214
docker stop f6d05272b57e # replace with the ID of your container
215215
sleep 20
216-
docker ps
216+
crictl ps
217217
```
218218
```
219219
CONTAINER ID IMAGE COMMAND CREATED ...
@@ -230,11 +230,11 @@ The running kubelet periodically scans the configured directory (`/etc/kubelet.d
230230
#
231231
mv /etc/kubelet.d/static-web.yaml /tmp
232232
sleep 20
233-
docker ps
233+
crictl ps
234234
# You see that no nginx container is running
235235
mv /tmp/static-web.yaml /etc/kubelet.d/
236236
sleep 20
237-
docker ps
237+
crictl ps
238238
```
239239
```
240240
CONTAINER ID IMAGE COMMAND CREATED ...

0 commit comments

Comments
 (0)