Kubernetes Components

2023-08-07T09:29:58+00:00

Bookmarks What are Kubernetes Components? Control Plane Components Node Components Kubernetes Add-Ons What are Kubernetes Components? There are two main components to Kubernetes: Cluster and Control Plane. When deploying Kubernetes, at least one cluster will be created. A cluster contains the following components: ● Nodes. ○ Worker machines that runs containerized applications. ○ Every cluster will have at least one node. ○ Managed by the Control Plane.            ● Pods. ○ Components of an application workload. ○ Managed by the Control Plane. A cluster can be configured to run multiple [...]