From 52c5ca9206fc4d255f02c120bcbd2245ad4f05f5 Mon Sep 17 00:00:00 2001 From: Guang Ya Liu Date: Wed, 10 Jan 2018 02:55:29 +0800 Subject: [PATCH] Added doc for how to get ingress ip and port for IBM Cloud Private. (#861) --- _docs/guides/bookinfo.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_docs/guides/bookinfo.md b/_docs/guides/bookinfo.md index f255edb9ff..5a868dcb0e 100644 --- a/_docs/guides/bookinfo.md +++ b/_docs/guides/bookinfo.md @@ -176,6 +176,12 @@ To start the application, follow the instructions below corresponding to your Is export GATEWAY_URL=:$(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