Reputation: 1036
I have a question, i deployed my Prometheus on k8s cluster and integrated it with istio to push metrics of my application pods. But in the targets page i see some endpoint URLs having ips which are not POD ips or Service ips as below
What is that ip and the port?
Upvotes: 0
Views: 577
Reputation: 44559
It's the IP of citadel pod deployed by istio. Citadel is an istio component which enables strong service-to-service and end-user authentication with built-in identity and credential management.You can check the citadel pod deployed in the namespace where you have deployed istio or in the istio-system
namespace.
Upvotes: 1