Hi,
Host Path Backend Service
--------------------------------------------------------------------
Any Unmatched (default) Any Unmatched (default) default-backend
I would like to add a second backend and a host/path matcher configuration to this load balancer. Having created the new backend service, I used the following command to create the host/path:
gcloud compute url-maps add-path-matcher primary-url-map --default-service default-backend --new-hosts images.mydomain.com --path-matcher-name all-paths --path-rules '/*=secondary-backend'
The outcome of this in the above console view is:
Host Path Backend Service
----------------------------------------------------------------------
Any Unmatched (default) Any Unmatched (default) default-backend
Is this expected? It seems like the system is trying to protect against unmatched paths (the reason why default-service is a required param if I understand correctly), however the first line already achieves this outcome. The configurations that were added look like they will conflict - is that the case? Thanks,
Colin