I've set up a minikube
cluster for development purpose inside a VM.
I've deployed few services and an ingress controller (the minikube one) to be able to access it without using NodePorts.
Inside my VM, I can access my services as usual with curl http://hello-world.info
or another one. Everything works fine.
But when I'm outside of my VM, I can't access it even if I'm on the same network. I tried from my hosting server, from my laptop and outside with a VPN.
The cluster IP is well listed in my addresses inside the VM (ip a
), but not accessible outside of it (e.g: ping xxx
).
How can I access my cluster services on another machine inside the same network ?
My VM's IP is set to static (ubuntu-server 20.XX.XX
) with netplan at 192.168.1.128
and my cluster IP is 192.168.49.2
. My DHCP server is allowed to distribute IPs only between 192.168.1.101-254
.
Thanks :).