nerdexam
Linux_Foundation

KCNA · Question #33

Which of the following is a lightweight tool that manages traffic flows between services, enforces access policies, and aggregates telemetry data, all without requiring changes to application code?

The correct answer is B. Linkerd. Linkerd is a lightweight service mesh that manages traffic, enforces policies, and aggregates telemetry for services without requiring changes to application code.

Submitted by amina.ke· May 4, 2026Cloud Native Architecture

Question

Which of the following is a lightweight tool that manages traffic flows between services, enforces access policies, and aggregates telemetry data, all without requiring changes to application code?

Options

  • ANetworkPolicy
  • BLinkerd
  • Ckube-proxy
  • DNginx

How the community answered

(34 responses)
  • A
    6% (2)
  • B
    91% (31)
  • C
    3% (1)

Why each option

Linkerd is a lightweight service mesh that manages traffic, enforces policies, and aggregates telemetry for services without requiring changes to application code.

ANetworkPolicy

NetworkPolicy defines firewall rules for pod communication within Kubernetes but does not manage traffic flows, aggregate telemetry, or enforce detailed access policies like a service mesh.

BLinkerdCorrect

Linkerd is a service mesh that operates by injecting proxies alongside application containers, transparently intercepting and managing inter-service communication. This design allows it to provide features like traffic management, security policies (e.g., mTLS), and rich telemetry without requiring any modifications to the underlying application code.

Ckube-proxy

kube-proxy maintains network rules on nodes to enable Service abstraction but does not manage inter-service traffic flows, enforce higher-level access policies, or collect detailed telemetry like a service mesh.

DNginx

Nginx is a popular web server and reverse proxy, often used as an Ingress controller, but it is not a service mesh that transparently manages all inter-service traffic, policies, and telemetry across a cluster without application changes.

Concept tested: Service mesh capabilities (Linkerd)

Source: https://linkerd.io/overview/

Topics

#Service Mesh#Linkerd#Traffic Management#Telemetry

Community Discussion

No community discussion yet for this question.

Full KCNA Practice