Bird
0
0

You want to ensure that all outbound traffic from your app container goes through the Envoy sidecar proxy for logging and security. Which Kubernetes feature helps enforce this?

hard📝 Workflow Q8 of 15
Kubernetes - Service Mesh
You want to ensure that all outbound traffic from your app container goes through the Envoy sidecar proxy for logging and security. Which Kubernetes feature helps enforce this?
ASetting resource limits on the Envoy container
BUsing iptables rules configured by an init container
CAdding a readiness probe to the app container
DConfiguring a pod security policy
Step-by-Step Solution
Solution:
  1. Step 1: Understand traffic redirection methods

    Iptables rules redirect outbound traffic from app to Envoy inside the pod.
  2. Step 2: Identify how iptables rules are applied

    Init containers often set up these iptables rules before main containers start.
  3. Final Answer:

    Using iptables rules configured by an init container -> Option B
  4. Quick Check:

    Iptables + init container enforce traffic through Envoy [OK]
Quick Trick: Init container sets iptables to route traffic through Envoy [OK]
Common Mistakes:
  • Confusing resource limits with traffic control
  • Thinking readiness probes affect traffic routing
  • Assuming pod security policies control traffic flow

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes