Interview Istio & Service Mesh

What is the difference between PERMISSIVE and STRICT mTLS mode?

Istio & Service Mesh · Basic level

Answer

PERMISSIVE mTLS accepts both plaintext and mTLS traffic, while STRICT requires mTLS. PERMISSIVE is useful during migration; STRICT is the target for strong zero-trust enforcement inside the mesh.

Technical explanation

PERMISSIVE lets meshed and non-meshed workloads communicate while sidecars or ambient enrollment are rolled out.

STRICT prevents plaintext clients from connecting to protected workloads.

A namespace should move to STRICT only after all expected callers are in the mesh and telemetry shows mTLS is being used.

Hands-on example

Migration check:

$ istioctl authn tls-check deploy/backend -n app

$ kubectl get pods -n app --show-labels

$ kubectl get pods -n app -o custom-columns=NAME:.metadata.name,CONTAINERS:.spec.containers[*].name

If any required client lacks istio-proxy or ambient enrollment, do not switch that path to STRICT yet.

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