I have a Kind
cluster installed on my Ubuntu machine. I have deployed few pods on the cluster and can see they're running using kubectl get pods
command.
As my pods are some NodeJS
services and a react
web application, they're all serving on localhost:3000
. So I want to reach that address on the cluster and test those pods working fine, but that address doesn't work on my computer and I think I should do some port forwarding maybe, however don't know how?
I want to know how can I reach out localhost:3000
of the locally running Kind cluster and send it http
requests?