Is it possible to make the k3s ingress route a certain path to a certain IP or port of a service which is not running inside the Kubernetes, but on same physical machine?
My use-case
Using single node k3s setup.
I have a special server running on the same host that the k3s is running on. I'd like to expose it as an HTTP endpoint in the ingress.
e.g:
foo.example.com --> k3s ingress --> 127.0.0.1:99 (port on k3s machine)
or
foo.example.com --> k3s ingress --> 192.168.1.7:99 (something in the local network)
Is something like this possible or should there be some reverse proxy before the k3s server?