|
|
|
|
|
by sjtindell
2477 days ago
|
|
Kubernetes uses the Docker daemon as its container runtime. The docker daemon is running on all your hosts, and Kubernetes talks to the daemon api to start up containers. user_request -> kubernetes api -> docker api on a host You can drop in other runtimes, like using containerd directly. |
|