I have two services with the names svc1
and svc2
. Can I make ingress dispatch the same domain with different base URLs to each service, i.e.:
ingress.domain/svc1/path-here
-> svc1 gets this request, with path rewritten as /path-here
ingress.domain/svc2/path-here
-> svc2 gets this request, with path rewritten as /path-here
So I can use one domain for all services on this k8s instance?