Sadia Sufyani
Sadia Sufyani

Reputation: 23

Access Prometheus GUI on Kubernetes Cluster with Istio

I have installed Istio on my GKE cluster using Istio CLI. I have read that Prometheus comes default with Istio.

How do I confirm if Prometheus is correctly installed and how do I access it?

Upvotes: 2

Views: 84

Answers (1)

suren
suren

Reputation: 8786

# kubectl get po -n istio-system
NAME                                    READY   STATUS    RESTARTS   AGE
istio-egressgateway-64d976b9b5-pmf8d    1/1     Running   0          18d
istio-ingressgateway-68c86b9fc8-94ftm   1/1     Running   0          18d
istiod-5c986fb85b-h6v4r                 1/1     Running   0          18d
prometheus-7bfddb8dbf-x2p2x             2/2     Running   0          18d
zipkin-7fcd647cf9-hp8qs                 1/1     Running   0          18d

If it's not there, deploy it with:

kubectl apply -f https://raw.githubusercontent.com/istio/istio/release-1.9/samples/addons/prometheus.yaml

Upvotes: 2

Related Questions