mirror of https://github.com/istio/istio.io.git
Added doc for how to get ingress ip and port for IBM Cloud Private. (#861)
This commit is contained in:
parent
7ef841d0ea
commit
52c5ca9206
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue