diff --git a/cmd/kubeadm/app/cmd/init.go b/cmd/kubeadm/app/cmd/init.go index 70ff745c5ea..a6084759eb9 100644 --- a/cmd/kubeadm/app/cmd/init.go +++ b/cmd/kubeadm/app/cmd/init.go @@ -103,6 +103,13 @@ var ( If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands: - 'systemctl status kubelet' - 'journalctl -xeu kubelet' + + Additionally a service may not have come up in docker. If that's the case, you can enumerate all docker + containers that have been started (including ones that have crashed and exited) by running the following commands: + - 'docker ps -a' + + Once you have that list, you can inspect the logs for any job with: + - 'docker logs $INSTANCEID' `))) )