Glossary

Service Mesh

A service mesh is an infrastructure layer that manages network communication between microservices: traffic, security (mTLS), observability, circuit breaking — without changing application code. Implemented via sidecar proxies (usually Envoy).

What it provides

How it works

A sidecar container (Envoy) runs alongside each Pod. All inbound and outbound traffic passes through it. The control plane (Istiod) configures all proxies centrally.

Popular solutions

Istio (most popular), Linkerd (simpler), Consul Connect.