I have a machine on a local network, that I have exposed to the Internet via port forwarding in the router.
Now how can I expose the serving machine running Kubernetes on docker for mac?
using minikube you can do:
minikube tunnel
But how to do it on mac for mac/desktop?
Normally the LoadBalancer is created for you if you use a cloud provider.
The command suggested by @Marko is almost correct.
The command:
opens a port but only locally (on loopback interface/localhost). To make it accessible from the outside you need to pass `--address=0.0.0.0. So the complete command is: