Istioπ
Overviewπ
Istio is an open platform for providing a uniform way to integrate microservices, manage traffic flow across microservices, enforce policies and aggregate telemetry data. Istioβs control plane provides an abstraction layer over the underlying cluster management platform, such as Kubernetes.
Big Bang Touchpointsπ
Licensingπ
Istio is an open source tool that utilizes an Apache-2.0 License.
Storageπ
Aside from the packages that it can integrate with, Istio provides no storage requirements.
High Availabilityπ
By default, Istio is configured with 1 istiod replica, but it can be configured in the Big Bang values to use horizontal pod autoscaling:
istio:
values:
istiod:
replicaCount: 1
hpaSpec:
minReplicas: 1
maxReplicas: 3
Likewise, the ingress gateway replicas can be specified and extra ingress gateways can be configured:
istio:
values:
ingressGateway:
minReplicas: 1
maxReplicas: 5
extraIngressGateways:
# ...
UIπ
Big Bang can be configured to deploy Kiali (a management console that provides dashboards, observability, and other robust capabilities) and Jaeger (an end-to-end distributed tracing system), both of which include UI features to help you visualize your Istio mesh. To enable Kialia and Jaeger, simply update the Big Bang values.yaml:
istio:
enabled: true
jaeger:
enabled: true
kiali:
enabled: true
Loggingπ
Within Big Bang, logs are captured by fluentbit and shipped to elastic by default.
Monitoringπ
Monitoring can be enabled to automatically capture metrics for Istio when monitoring.enabled
is set to true
in the Big Bang values.yaml. Since Istio 1.5, standard metrics are directly exported by the Envoy proxy. For a list of metrics, see Istio Standard Metrics and Istio Observability.
Grafana (part of the monitoring packages) is a standalone component of Big Bang that can provide dashboards to show monitoring data. For more information, see Big Bangβs Grafana docs and Visualizing Metrics with Grafana.
Healthchecksπ
There are standard readiness probes built into the envoy sidecars and istio containers. See here for more info.
You can get events in an istio-injected namespace to see if your sidecars are unhealthy or having issues. To check the health/status of the istio installation, run kubectl get istiooperators -n istio-system
.
Dependant Packagesπ
- istio-operator