Understanding the Istio architecture
In this section, we will get to know Istio a little better.
First, let’s meet the main components of Istio and understand what they do and how they relate.
Istio is a large framework that provides a lot of capabilities, and it has multiple parts that interact with each other and with Kubernetes components (mostly indirectly and unobtrusively). It is divided into a control plane and a data plane. The data plane is a set of proxies (one per pod). Their control plane is a set of components that are responsible for configuring the proxies and collecting telemetry data.
The following diagram illustrates the different parts of Istio, how they are related to each other, and what information is exchanged between them.
Figure 14.5: Istio architecture
As you can see, there are two primary components: the Envoy proxy, which is the sidecar container attached to every service instance (every pod), and istiod, which is responsible...