**1. What is a mesh-scoped zone proxy deployment model?**
A mesh-scoped zone proxy deployment model lets you deploy dedicated ingress and egress proxies for each mesh instance rather than sharing a single set across all meshes in a zone. This gives you independent traffic isolation, per-mesh policy enforcement, and cleaner failure domains. Kong Mesh 2.14 adds full Helm support for this model, so you can configure it declaratively alongside the rest of your GitOps workflow.
**2. How does SNI matching improve zone proxy traffic control?**
SNI matching lets zone proxies inspect the Server Name Indication field on incoming TLS connections and apply policies based on the destination service. Instead of blanket rules at the zone boundary, you get fine-grained control over which traffic policies apply to which services as traffic enters or exits a zone. This makes multi-mesh and multi-cluster policy enforcement significantly more precise.
**3. What policies can you apply to mesh-scoped zone proxies?**
Kong Mesh 2.14 supports ten policies on mesh-scoped zone proxies: MeshTrafficPermission, MeshTimeout, MeshRateLimit, MeshFaultInjection, MeshCircuitBreaker, MeshHealthCheck, MeshProxyPatch, MeshMetric, MeshTrace, and MeshAccessLog. These cover access control, resilience, observability, and traffic shaping at the zone proxy layer, giving you the same policy granularity at the mesh boundary that you already have at the sidecar level.
**4. How do Kubernetes native sidecars change sidecar management?**
Starting with Kong Mesh 2.14, Kubernetes native sidecars are enabled by default on clusters running Kubernetes 1.29 or later. Native sidecars use the Kubernetes init container lifecycle, which means the sidecar starts before your application container and stops after it. This eliminates common race conditions during pod startup and shutdown and removes the need for custom workarounds to manage sidecar ordering.
**5. What changed with observability in Kong Mesh 2.14?**
Control plane metrics now export via OTLP (OpenTelemetry Protocol), and the Grafana dashboards have been updated to use these improved metrics. A new MeshOpenTelemetryBackend resource gives you a declarative way to configure OpenTelemetry collection per mesh. Together, these changes consolidate observability into a single standards-based pipeline rather than relying on fragmented metric sources.
**6. How does Kong Mesh 2.14 strengthen security defaults?**
Three defaults changed. The Envoy admin API now communicates over a Unix domain socket instead of a TCP port, reducing the attack surface on each proxy. Localhost access to the admin API is restricted by default. And CORS headers ship empty by default, so cross-origin requests are blocked unless you explicitly configure an allow list. These changes enforce a stricter zero-trust baseline without requiring manual hardening.
**7. What are KDS offline signing tokens and when would you use them?**
KDS offline signing tokens let you pre-generate authentication tokens for zone control planes and users without requiring a live connection to the global control plane. This is useful for air-gapped deployments, disaster recovery scenarios, or any environment where the global control plane may be temporarily unreachable. You generate the tokens ahead of time and distribute them to zones or users as part of your provisioning workflow.