mirror of https://github.com/istio/istio.io.git
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:
parent
23fc73492e
commit
f57b125fd3
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue