gcloud compute url-maps add-host-rule
NAME
--description
DESCRIPTION
]--format
FORMAT
]--help
] --hosts
HOSTS
[HOSTS
…] --path-matcher-name
PATH_MATCHER_NAME
[--project
PROJECT_ID
]--quiet
, -q
]-h
]gcloud compute url-maps add-host-rule
is used to add a mapping of hosts to a patch
matcher in a URL map. The mapping will match the host
component of HTTP requests to path matchers which in turn map
the request to a backend service. Before adding a host rule,
at least one path matcher must exist in the URL map to take
care of the path component of the requests. gcloud compute
url-maps add-path-matcher
or gcloud compute url-maps edit
can be used to add path matchers.NAME
--description
DESCRIPTION
--hosts
HOSTS
[HOSTS
…]
*
or *-
. *
acts as a
glob and will match any string of atoms to the left where an
atom is separated by dots (.
) or dashes (-
).
--path-matcher-name
PATH_MATCHER_NAME
gcloud compute url-maps add-path-matcher
).
--format
FORMAT
json
, text
, yaml
.
--help
--project
PROJECT_ID
--quiet
, -q
-h
*-foo.google.com
and
google.com
hosts to the www
path matcher, run:$ gcloud compute url-maps add-host-rule MY-URL-MAP \ --hosts *-foo.google.com google.com --path-matcher-name www
compute
component. See
installing components
if it is not installed.