Deploying prometheus in eks

Hi, I am trying to deploy prometheus in my eks cluster. I can able to curl localhost on 9090 from terminal. But can’t access from the browser.

My jumphost is in public VPC and cluster is private. Sg for jumphost is opened for 9090 from my localhost

What may be the issue and how to resolve it.

How did you expose the Prometheus dashboard?
Are you creating a nodeport/loadbalancer service for that?

Thanks,
Trung.

you should use port-forward locally to be able to use it in your browser. try
kubectl -n Namespace port-forward svc/promethus-service-name 9090:9090 , then hit 127.0.0.1:9090 from your local browser.