Added doc for how to get ingress ip and port for IBM Cloud Private. (#861)

This commit is contained in:
Guang Ya Liu 2018-01-10 02:55:29 +08:00 committed by Laurent Demailly
parent 7ef841d0ea
commit 52c5ca9206
1 changed files with 6 additions and 0 deletions

View File

@ -176,6 +176,12 @@ To start the application, follow the instructions below corresponding to your Is
export GATEWAY_URL=<public IP of the worker node>:$(kubectl get svc istio-ingress -n istio-system -o jsonpath='{.spec.ports[0].nodePort}')
```
1. _IBM Cloud Private:_ External load balancers are not supported in IBM Cloud Private. You can use the host IP of the ingress service, along with the NodePort, to access the ingress.
```bash
export GATEWAY_URL=$(kubectl get po -l istio=ingress -n istio-system -o 'jsonpath={.items[0].status.hostIP}'):$(kubectl get svc istio-ingress -n istio-system -o 'jsonpath={.spec.ports[0].nodePort}')
```
1. _Minikube:_ External load balancers are not supported in Minikube. You can use the host IP of the ingress service, along with the NodePort, to access the ingress.
```bash