Need of Service mesh in Kubernetes

7/10/2019

When DNS service Discovery in kubernetes helping us in establishing connection between services . What will be the need to have a service mesh like istio etc in kubernetes.

-- Balakumar Ezhilmaran
kubernetes

1 Answer

7/10/2019

In addition to the service discovery, few other things are available when you use Istio on top of Kubernetes:

  • Blue green deployments with request routing to new release based on percentage value given by user.
  • Rate limiting
  • Integration with grafana and prometheus for monitoring
  • Service graph visualisation with Kiali
  • Circuit breaking
  • Tracing and metrics without having to instrument your applications
  • You will be able to secure your connections at mesh level via mTLS

You can read more about the advantages of having Istio in your cluster here.

-- Malathi
Source: StackOverflow