I'm trying to get the IP address of the "docker-for-desktop" node.
I'm switching from minikube to docker-for-desktop because it doesn't require VirtualBox.
I created a service that exposes a NodePort. When I use minikube context, I'm able to reach the service via minikube's IP address. When I switch to docker-for-desktop context, I'm not able to reach the service because I don't know its IP address.
With minikube, I was able to do:
$ minikube ip
or even:
$ minikube service list
I'm not sure how to do that with docker-for-desktop.
I would expect to have a command that gives a docker-for-desktop IP address.