List all pods:
kubectl get pods
kubectl get pods -n <namespace>
Show logs from last pod:
kubectl logs -n <namespace> <pod> -p
Show logs from current pod:
kubectl logs -n <namespace> <pod>
# add "-f" to follow
Enter to bash inside pod:
kubectl -i -t <pod> -n <namespace> -- /bin/bash