This commit is contained in:
Matthieu Maquevice 2018-09-05 06:09:46 +02:00 committed by Martin Taillefer
parent 837f16af99
commit 3c86f88de4
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ Let's see how you can configure a `Gateway` on port 80 for HTTP traffic.
Entering the `httpbin` service URL in a browser won't work because you can't tell the browser to pretend to be accessing `httpbin.example.com` like with `curl`. In a real world situation, this is not a problem because because you configure the requested host properly and DNS resolvable. Thus, you use the host's domain name in the URL, for example, `https://httpbin.example.com/status/200`.
To work around this problem for simple tests and demos, use a wildcard `*` value for the host in the `Gateway` and `VirutualService` configurations. For example, if you change your ingress configuration to the following:
To work around this problem for simple tests and demos, use a wildcard `*` value for the host in the `Gateway` and `VirtualService` configurations. For example, if you change your ingress configuration to the following:
{{< text bash >}}
$ cat <<EOF | kubectl apply -f -