Service Mesh — Advanced Operations
Istio and Envoy vocabulary: data plane, control plane, VirtualService, DestinationRule, mTLS, circuit breaker in mesh, ambient mode, and service mesh observability.
- Data Plane vs. Control Plane (Service Mesh) /ˈdeɪtə pleɪn/
In a service mesh: the data plane handles actual network traffic (the sidecar proxies — Envoy in Istio — intercept and route requests). The control plane manages configuration distribution and service discovery, pushing routing rules, policies, and certificates to the data plane.
"Istio's architecture: istiod (control plane) distributes xDS configuration to Envoy sidecars (data plane). When you apply a VirtualService YAML, istiod translates it to Envoy Listener/Cluster/Route config and pushes it to relevant sidecars via gRPC streaming. Traffic never passes through istiod — only configuration does."
- Envoy Sidecar /ˈɛnvɔɪ ˈsaɪdkɑː/
A proxy container (Envoy) injected alongside each application pod in an Istio service mesh. Intercepts all inbound and outbound network traffic via iptables rules. Handles: traffic encryption (mTLS), load balancing, circuit breaking, retries, timeouts, observability (metrics, traces).
"When sidecar injection is enabled for a namespace, Istio's webhook automatically adds an Envoy container to every pod. The app container has no network code — it talks to localhost as normal. Envoy intercepts all traffic, applies policies (mTLS, retries), emits metrics, and propagates trace context headers. Zero application code changes required."
- VirtualService /ˈvɜːtʃuəl ˈsɜːvɪs/
An Istio resource that defines traffic routing rules for a service. Routes traffic based on headers, URI, method, weights. Enables: canary releases (90% to v1, 10% to v2), A/B testing (route by header), fault injection (inject delays or errors for testing).
"Our canary VirtualService routes: traffic with header 'x-canary: true' goes to checkout-v2, all other traffic to checkout-v1. After a week, we change weights: 90% to checkout-v1, 10% to checkout-v2 (no header required). After another week: 0% v1, 100% v2. The transition is config-only — no redeploy, no DNS change."
- DestinationRule /ˌdɛstɪˈneɪʃən ruːl/
An Istio resource defining policies for traffic after it's been routed. Defines subsets (v1, v2 based on labels), load balancing settings, circuit breaker (outlier detection), connection pool limits, and TLS settings for the destination.
"The DestinationRule for payments-service defines: subset v1 (pod label version: v1), subset v2 (version: v2), outlier detection (eject a pod after 5 consecutive 5xx errors for 30 seconds), connection pool (max 100 connections per pod). Combined with the VirtualService, this gives precise traffic shaping and resilience without application code changes."
- mTLS (Mutual TLS) in Service Mesh /ˈmjuːtʃuəl tiː ɛl ɛs/
Mutual TLS requires both parties in a connection to authenticate with certificates. In Istio, SPIFFE-based workload identities are automatically provisioned; Envoy sidecars handle the TLS negotiation. Enables zero-trust service-to-service communication without application changes.
"With Istio's PeerAuthentication set to STRICT mode, all inter-service communication requires mTLS. Envoy sidecars handle cert negotiation transparently — the application code uses plain HTTP internally. If a rogue container tries to talk to the payments service without a valid certificate, the connection is rejected at the sidecar level."
- Ambient Mesh (Istio) /ˈæmbiənt mɛʃ/
Istio's sidecar-less architecture mode. Instead of per-pod Envoy sidecars, a node-level ztunnel (zero-trust tunnel) handles L4 security (mTLS, authorisation). L7 features (retries, traffic shaping) use waypoint proxies per namespace or service — only deployed when needed.
"We're evaluating ambient mode for our high-density microservices cluster. With sidecars, 40% of pods are Envoy containers. Ambient mode replaces per-pod sidecars with one ztunnel per node — significant resource reduction. The caveat: L7 policies require deploying waypoint proxies, adding some complexity for services needing traffic shaping."
- Fault Injection (Service Mesh) /fɔːlt ɪnˈdʒɛkʃən/
A testing technique in a service mesh where artificial delays or HTTP errors are injected into traffic between services — without modifying application code. Used to verify resilience: does the upstream service handle downstream timeouts and errors gracefully?
"We used Istio fault injection to test our cart service's resilience. VirtualService config: inject 500ms delay for 50% of requests to inventory-service. Test result: cart service timed out and returned 503 — we found a missing fallback. After adding a cache-based fallback, we re-ran fault injection: cart returned cached inventory data during the 500ms delay."
Quick Quiz — Service Mesh — Advanced Operations
Test yourself on these 7 terms. You'll answer 7 multiple-choice questions — each shows a term, you pick the correct definition.
What does this term mean?
Quiz complete!
Frequently Asked Questions
How many terms are in the Service Mesh — Advanced Operations vocabulary set?
The Service Mesh — Advanced Operations set has 7 terms, each with a definition, pronunciation, and an example sentence showing real-world usage.
What level is the Service Mesh — Advanced Operations vocabulary set?
This set is labelled Advanced. If you find it too challenging, browse the full vocabulary list to find a set closer to your current level.
Is this vocabulary set free to study?
Yes. Every vocabulary set on CoderSlingo, including this one, is completely free — no account, sign-up, or payment required.
What study modes are available for this set?
Three modes: a searchable Study List showing all terms with definitions and examples, Flashcards for active recall practice, and a Quiz that tests you with multiple-choice questions.
Is my flashcard progress saved?
Yes — your "learned" status for each flashcard is saved in your browser's local storage, so it persists between visits on the same device.
Can I practise these terms in an exercise?
Browse the Vocabulary exercises hub to find a related interactive exercise covering similar IT terminology.
Can I search within this vocabulary set?
Yes — use the search box above the term list to filter instantly by word, definition, or example as you type.
Is the Service Mesh — Advanced Operations set linked to any career role paths?
Vocabulary sets that map to specific IT roles (like Frontend Developer or DevOps Engineer) show a "Part of" list above linking to those role paths — check the header for this set.
How is a quiz question scored?
Each quiz question shows one term and four possible definitions; you pick the correct one. At the end you get a percentage score and a summary message based on how many you got right.
Where can I find more vocabulary sets like this one?
Browse the full Vocabulary hub for all study sets, organised by topic — from Agile and Git to Cloud Infrastructure, Security, and AI/ML.