Removing additional Docker mentions

This commit is contained in:
Chris Short
2022-01-19 15:10:45 -05:00
parent 40afa49efa
commit d158cdf028
@@ -204,14 +204,13 @@ NAME READY STATUS RESTARTS AGE
static-web-my-node1 1/1 Running 0 12s static-web-my-node1 1/1 Running 0 12s
``` ```
Back on your node where the kubelet is running, you can try to stop the Docker Back on your node where the kubelet is running, you can try to stop the container manually.
container manually.
You'll see that, after a time, the kubelet will notice and will restart the Pod You'll see that, after a time, the kubelet will notice and will restart the Pod
automatically: automatically:
```shell ```shell
# Run these commands on the node where the kubelet is running # Run these commands on the node where the kubelet is running
docker stop f6d05272b57e # replace with the ID of your container crictl stop f6d05272b57e # replace with the ID of your container
sleep 20 sleep 20
crictl ps crictl ps
``` ```