nerdexam
Linux_Foundation

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.

Submitted by ngozi_ng· May 4, 2026Kubernetes Fundamentals

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)
  • A
    3% (1)
  • B
    88% (28)
  • C
    3% (1)
  • D
    6% (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.

AProxying REST requests across a set of containers.

Proxying REST requests is typically handled by API gateways or service meshes, not the fundamental container network itself.

BAllowing containers running on separate hosts to communicate.Correct

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.

CAllowing containers on the same host to communicate.

While containers on the same host can communicate, a key feature of a distributed container network is extending this capability beyond a single host.

DCaching remote disk access.

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

#Container Networking#Multi-Host Communication#Distributed Systems

Community Discussion

No community discussion yet for this question.

Full KCNA Practice