- Home
- All questions
- Question 537
CKA study material · question 537 of 1000
You are hardening a cluster whose nodes sit on an untrusted network. Which statement about node-to-control-plane traffic is correct?
Show the answer
Answer: A. Every API call from a node terminates at the API server, and no other control plane component accepts remote connections
Kubernetes uses a hub-and-spoke API pattern: nodes and their Pods talk only to the API server, which is what makes it safe by default to run that path over an untrusted network.
Source: Communication between Nodes and the Control Plane (Kubernetes) — Node to Control Plane