Complete the code to identify the main component of the Kubernetes control plane that manages the cluster state.
The Kubernetes control plane component responsible for storing cluster data is called [1].
The etcd is the key-value store that holds all cluster data in Kubernetes control plane.
Complete the code to name the Kubernetes node component that runs containers and communicates with the control plane.
The agent running on each Kubernetes node that manages pods and containers is called [1].
The kubelet runs on each node and ensures containers are running as expected.
Fix the error in the statement about the Kubernetes control plane component that exposes the Kubernetes API.
The component that exposes the Kubernetes API and serves as the front-end of the control plane is called [1].
The API server is the front-end of the Kubernetes control plane that exposes the API.
Fill both blanks to complete the description of Kubernetes node networking components.
The component [1] manages network rules on nodes, while [2] runs containers and reports node status.
kube-proxy manages network rules for pod communication, and kubelet runs containers and reports node health.
Fill all three blanks to complete the dictionary comprehension describing control plane components and their roles.
control_plane = {"[1]": "Stores cluster data", "[2]": "Schedules pods", "[3]": "Exposes Kubernetes API"}etcd stores data, scheduler assigns pods to nodes, and API server exposes the API.