Controlplane ➜ docker ps -a | grep etcd

Hi,

While running this below command I am getting the error -bash: docker: command not found

But while watching this command on the solution video it is working. Am I not typing this command correctly?

controlplane ➜ docker ps -a | grep etcd
-bash: docker: command not found

Also I am also getting an issue on this command as well

controlplane ~ ➜ cat /etc/kubernetes/manifests/
cat: /etc/kubernetes/manifests/: Is a directory

Frequently you’ll find that when the docker command is unavailable, you can use crictl instead. The same syntax will work in this case:

crictl ps -a | grep etcd

Ok thanks a lot Rob :blush: