make the test curl command for bookinfo clearer (#3123)

give a nice visual clue that the accessed page is indeed productpage,
and not some other server that returns 200
This commit is contained in:
Vadim Eisenberg 2019-01-23 18:00:20 +02:00 committed by istio-bot
parent 03882efdc9
commit 024771c226
1 changed files with 2 additions and 3 deletions

View File

@ -191,9 +191,8 @@ is used for this purpose.
To confirm that the Bookinfo application is running, run the following `curl` command:
{{< text bash >}}
$ curl -I http://${GATEWAY_URL}/productpage
HTTP/1.1 200 OK
...
$ curl http://${GATEWAY_URL}/productpage | grep -o "<title>.*</title>"
<title>Simple Bookstore App</title>
{{< /text >}}
You can also point your browser to `http://$GATEWAY_URL/productpage`