I am pretty novice in Kubernetes.
From the Kubernetes website, on 'host' field in ingress:
An optional host. In this example, no host is specified, so the rule applies to all inbound HTTP traffic through the IP address specified. If a host is provided (for example, foo.bar.com), the rules apply to that host.
So if I have host as 'x.y.z', path as '/my-service', then only a call like 'x.y.z/my-service/....' would be directed to the configured backend service.
If host is not set, then any call with /my-service in its url would be send to configured backend.
x.y.z/my-service/..
a.b.c/my-service/..
Both would be directed to backend.
Is my understanding correct?