Hello,
For creating traffic, in “demo-create-traffic-into-your-mesh” lecture you have used below commands:
$ export INGRESS_HOST=$(minikube ip)
$ export INGRESS_PORT=$(kubectl -n istio-system get service istio- ingressgateway -o jsonpath=’{.spec.ports[?(@.name==“http2”)].nodePort}’)
$ curl “http://$INGRESS_HOST:$INGRESS_PORT/productpage”
As I have installed Istio and bookinfo app on kubernetes cluster on Docker Desktop.
So for me $ curl “http://localhost:$INGRESS_PORT/productpage” is not working.
So, could you please help me to understand which IP should I use which is equivalent to minikube ip.
NOTE: I have installed the gateway by using below command,
$ kubectl apply -f samples/bookinfo/networking/bookinfo-gateway.yaml
then too
$ curl “http://localhost:$INGRESS_PORT/productpage”
is not working because service type is cluster IP. So how I can create traffic.
Thanks,
Durgesh