fix wrong identation (#1820)

This commit is contained in:
Ramon Pires da Silva 2019-09-25 15:26:40 -03:00 committed by Knative Prow Robot
parent 497c78d760
commit 27f40573ad
1 changed files with 18 additions and 18 deletions

View File

@ -219,25 +219,25 @@ kubectl get VirtualService entry-route --output yaml
--output jsonpath="{.status.loadBalancer.ingress[*]['ip']}"`
```
* Send a request to the Search service:
```shell
curl http://${GATEWAY_IP}/search --header "Host: example.com"
```
or
```shell
curl http://${GATEWAY_IP}/search --header "Host: <YOUR_DOMAIN_NAME>"
```
for the case using your own domain.
* Send a request to the Search service:
```shell
curl http://${GATEWAY_IP}/search --header "Host: example.com"
```
or
```shell
curl http://${GATEWAY_IP}/search --header "Host: <YOUR_DOMAIN_NAME>"
```
for the case using your own domain.
* Send a request to the Login service:
```shell
curl http://${GATEWAY_IP}/login --header "Host: example.com"
```
or
```shell
curl http://${GATEWAY_IP}/login --header "Host: <YOUR_DOMAIN_NAME>"
```
for the case using your own domain.
* Send a request to the Login service:
```shell
curl http://${GATEWAY_IP}/login --header "Host: example.com"
```
or
```shell
curl http://${GATEWAY_IP}/login --header "Host: <YOUR_DOMAIN_NAME>"
```
for the case using your own domain.
## How It Works