etcdctl tool is used to interact with etcd. Always set ETCDCTL_API=3 before running commands. API version 2 is deprecated and will give wrong results./etc/kubernetes/manifests/etcd.yaml. You can find the cert paths and endpoint there. On the exam, always check this file first.etcdctl snapshot save followed by the path where you want to save the snapshot file.--cacert, --cert, and --key. The exam task always gives you these paths.etcdctl snapshot status on the file to verify it is not corrupt before moving on.kubectl get pods hangs, the API server becomes unreachable.etcdctl snapshot restore. It creates a new data directory from the snapshot. You then point etcd at this new directory./etc/kubernetes/manifests/etcd.yaml to change --data-dir to your new restore path. etcd will restart automatically as a static pod.