I have 2 VM instances on Google Cloud Platform. 1st VM is used as a Kubernetes Master Node and 2nd as Worker Node.
I have Prometheus and Grafana Deployed on the cluster. I want to access the Prometheus and Grafana dashboard from my laptop.
I tried port forwarding the local host to the external IP that is assigned by GCP but binding is not possible as there is no interface.
The error I get is as follows:
kubectl -n cilium-monitoring port-forward service/grafana --address 45.210.4.126 --address :: 3000:3000
Forwarding from [::]:3000 -> 3000
Unable to listen on port 3000: Listeners failed to create with the following errors: [unable to create listener: Error listen tcp4 45.210.4.126 :3000: bind: cannot assign requested address]
Any Help ?