Fix single word in command (#2112)

It returned this:
```
kubectl get svc istio-ingress -n istio-system
Error from server (NotFound): services "istio-ingress" not found
```

Now it works correctly
This commit is contained in:
facundomedica 2018-08-01 16:09:18 -03:00 committed by Martin Taillefer
parent 9f6ebe9eeb
commit 2bbe9eef03
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ deploy/reviews-v3 1 1 1 1 7m
Now get the `istio-ingress` IP:
{{< text bash >}}
$ kubectl get svc istio-ingress -n istio-system
$ kubectl get svc istio-ingressgateway -n istio-system
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
istio-ingressgateway LoadBalancer 10.59.251.109 35.194.26.85 80:31380/TCP,443:31390/TCP,31400:31400/TCP 6m
{{< /text >}}