Where does Kubernetes log the output of "docker run"?

10/2/2017

I am debugging a Kubernetes cluster which deploys Docker containers.

How can I see the results and exit code of docker run executed by Kubernetes?

-- Adam Matan
docker
kubernetes

1 Answer

10/3/2017

Kubernetes does not execute docker run command, it works with an API, usualy via default docker endpoint unix:///var/run/docker.sock

-- Radek 'Goblin' Pieczonka
Source: StackOverflow