I have created a K8S cluster on a macOS machine using kind
. I have an echo-service
running on that cluster that I can access on localhost when kubectl port-forward svc/echo-service 7893:7893
is running.
I would have expected to be able to access the service on the K8S cluster IP (http://10.104.60.162:7893/
), but that doesn't work. Did I miss something?