It depends on how it was installed. I installed Kubernetes on some Ubuntu computers following the instructions of Docker-MultiNode.
With this installation, I find logs using the logs command, like this.
Find your container ID.
$ docker ps | egrep kubelet
Use this container identifier to view logs.
$ docker logs '<container-id>'
source share