Deploying add-on components to provide observability
By now, you know how to deploy Istio and understand some of the most used objects, but you haven’t seen one of the most useful features yet – observability. At the beginning of the chapter, we mentioned that observability is one of our favorite features provided by Istio, and in this chapter, we will explain how to deploy a popular Istio add-on called Kiali.
Installing Istio add-ons
When you deploy Istio, you provide a Service mesh and all of the features to your developers. While this is powerful by itself, you need to add a few extra components to truly provide a complete solution. There are four add-ons that you should add to your Service mesh – while there are alternatives to some of the solutions, we are using the most commonly used add-ons, specifically:
- Prometheus
- Grafana
- Jaeger
- Kiali (which we will cover in the next section)
We have discussed Prometheus and...