Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How health check of Kubernetes work with Istio? [closed]

I am doing with k8s and Istio as service meshing. I wonder what if pod in a service A is not ready(Readiness is unhealthy), How Istio will treat this pod? Is there way i can config rule of load balance(Load balance at L3/L4 layer)?

like image 302
Blind Avatar asked Sep 01 '25 03:09

Blind


1 Answers

You might want to check Health Checking of Istio Services to check the health of your pods. As mentioned in the post, you would have to configure the containers with liveness probes using kubectl before you can actually do health checking.

like image 195
CyG Avatar answered Sep 02 '25 23:09

CyG