# Kubernetes (Kuber) Documentation ## Control Plane (CP) - **CP (Control Plane)**: The central management entity of the Kubernetes cluster. - By default, the manager in Kubernetes does not directly handle any containers. ## Kubernetes Manager Components - **Control Manager** - **Scheduler** - **API Server** - **etcd (Database)** - **Kubelet** ## Kubernetes Worker Components - **Kube Proxy** - **Kubelet** ## Data Flow - **Kube Proxy** and **Kubelet** communicate with the Kubernetes Manager for data handling. ## Administration Tools - **kubeadm**: Used for administration commands. - **kubectl**: Used to manage nodes and services. ---