GCP - Cloud Load Balancing
Given this URL map configuration snippet, which backend service will handle requests to
/images/*?
{
"hostRules": [{"hosts": ["*"], "pathMatcher": "allpaths"}],
"pathMatchers": [{
"name": "allpaths",
"defaultService": "backend-service-default",
"pathRules": [{"paths": ["/images/*"], "service": "backend-service-images"}]
}]
}