Interview Istio & Service Mesh

Does the data plane keep working if the control plane goes down, and why?

Istio & Service Mesh · Intermediate level

Answer

Yes, the data plane can keep serving existing traffic if the control plane goes down because Envoy proxies already have their last accepted configuration. However, they cannot receive new routes, endpoints, certificates, or policy updates until control-plane connectivity is restored.

Technical explanation

This separation is an important resilience property of the mesh.

It does not mean the control plane is optional; prolonged outage can affect scaling, rotations, and rollout safety.

Gateways and sidecars should be monitored separately from istiod so teams know whether they have a control-plane issue or a data-plane issue.

Hands-on example

Operational check:

$ istioctl proxy-status

If proxies show connected and synced, traffic problems are likely data-plane or app-specific.

If proxies are disconnected but traffic still works, avoid risky config changes until istiod is restored and proxies resync.

Preparing for an interview?

Check how well your resume matches the role with our free resume checker— match score, ATS check, and the skills you're missing.

More Istio & Service Mesh interview questions

← All Istio & Service Mesh questions