Complete the code to identify the component responsible for managing pods on a Kubernetes node.
The component that runs on each node and ensures containers are running in pods is called [1].
The kubelet is the agent that runs on each Kubernetes node. It manages pods and containers on that node.
Complete the code to identify the component that manages network rules on a Kubernetes node.
The component responsible for maintaining network rules and load balancing on each node is [1].
kube-proxy manages network rules on nodes. It handles routing and load balancing for services.
Fix the error in the statement about the container runtime.
The [1] is the component that runs containers on a node, such as Docker or containerd.
The container runtime is the software that actually runs containers on the node, like Docker or containerd.
Fill both blanks to complete the description of node components.
The [1] manages pod lifecycle on the node, while the [2] handles network traffic routing.
The kubelet manages pods and containers on the node. The kube-proxy manages network traffic routing and load balancing.
Fill all three blanks to complete the Kubernetes node components description.
On a Kubernetes node, the [1] runs containers, the [2] manages pod states, and the [3] handles network rules.
The container runtime runs containers. The kubelet manages pod lifecycle. The kube-proxy manages network rules on the node.