KCNA · Question #17
What is a key feature of a container network?
The correct answer is B. Allowing containers running on separate hosts to communicate. A key feature of a container network is enabling seamless communication between containers, especially those distributed across different physical hosts in a cluster.
Question
What is a key feature of a container network?
Options
- AProxying REST requests across a set of containers.
- BAllowing containers running on separate hosts to communicate.
- CAllowing containers on the same host to communicate.
- DCaching remote disk access.
How the community answered
(32 responses)- A3% (1)
- B88% (28)
- C3% (1)
- D6% (2)
Why each option
A key feature of a container network is enabling seamless communication between containers, especially those distributed across different physical hosts in a cluster.
Proxying REST requests is typically handled by API gateways or service meshes, not the fundamental container network itself.
A fundamental requirement for container orchestration systems like Kubernetes is that all containers can communicate with each other, regardless of which physical host they are running on. Container networking provides a consistent network fabric that spans across nodes, facilitating this essential inter-host container communication for distributed applications.
While containers on the same host can communicate, a key feature of a distributed container network is extending this capability beyond a single host.
Caching remote disk access is related to storage performance and is not a primary function of container networking.
Concept tested: Container network inter-host communication
Source: https://kubernetes.io/docs/concepts/cluster-administration/networking/
Topics
Community Discussion
No community discussion yet for this question.