I need a little help if someone can advise where I am doing some mistake. I am trying to Setup Prometheus & Grafana Monitoring on Kubernetes Using Helm. Installation of Prometheus and Grafana done successfully. Installation of Prometheus and Grafana done successfully
All the pods and services running as expected All the pods and services running as expected
Both Grafana and Prometheus Servers up and running on respective ports. Both Grafana and Prometheus Servers up and running on respective ports.
However, when I want to access Grafana server from browser then facing issue. I suppose that the obvious reason is that we don’t have Node Port exposed in Grafana which is necessary to get access from outside. We can see in last screen shot that Grafana server showing internal cluster IP but not the Node Port IP To get Node Port exposed I use this : Kubectl expose service grafana-server --type=Nodeport --target-port=3000 --name=grafana-server-ext However still not getting NodePort so unable to get access Grafana using browser.