Kubernetes Container Runtime Concepts: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Kubernetes Concepts") |
|||
Line 1: | Line 1: | ||
=External= | |||
* https://kubernetes.io/docs/setup/production-environment/container-runtimes/ | |||
=Internal= | =Internal= | ||
* [[Kubernetes Concepts#Container_Runtime|Kubernetes Concepts]] | * [[Kubernetes Concepts#Container_Runtime|Kubernetes Concepts]] | ||
=Container Runtime= | |||
Each Kubernetes node runs a container runtime, usually Docker. However, support for other container runtimes is available, via Container Runtime Interface (CRI). | |||
=Docker= | |||
Kubernetes and Docker are complementary technologies. Docker is the technology that starts and stops containers under Kubernetes' supervision. Kubernetes is the higher-level technology that decides which nodes to run containers on, when to scale an application up or down or when to apply updates. |
Revision as of 17:29, 15 August 2019
External
Internal
Container Runtime
Each Kubernetes node runs a container runtime, usually Docker. However, support for other container runtimes is available, via Container Runtime Interface (CRI).
Docker
Kubernetes and Docker are complementary technologies. Docker is the technology that starts and stops containers under Kubernetes' supervision. Kubernetes is the higher-level technology that decides which nodes to run containers on, when to scale an application up or down or when to apply updates.