need istio-system namespace for kubectl commands (#710)

If the user followed the standard install, they need to use `namespace` on these kubectl commands
This commit is contained in:
Ed Sweeney 2017-11-09 19:09:33 -08:00 committed by Shriram Rajagopalan
parent 23fc73492e
commit f57b125fd3
1 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ rules.
* If load balancers are not supported, use the ingress controller pod's hostIP:
```bash
kubectl get po -l istio=ingress -o jsonpath='{.items[0].status.hostIP}'
kubectl -n istio-system get po -l istio=ingress -o jsonpath='{.items[0].status.hostIP}'
```
```bash
@ -164,7 +164,7 @@ rules.
along with the istio-ingress service's nodePort for port 80:
```bash
kubectl get svc istio-ingress
kubectl -n istio-system get svc istio-ingress
```
```bash