Hello, I've been following an <istio tutorial> usi...
# general
c
Hello, I've been following an istio tutorial using Rancher Desktop locally on my Mac OS. When I get to creating the ingress gateway part of the tutorial, the istio ingress gateway External-IP is set to 192.168.5.15:
Copy code
happy-istio % kubectl get svc -n istio-system istio-ingressgateway
NAME                   TYPE           CLUSTER-IP     EXTERNAL-IP    PORT(S)                                                                      AGE
istio-ingressgateway   LoadBalancer   10.43.182.19   192.168.5.15  15021:32566/TCP,80:30368/TCP,443:32609/TCP,31400:30828/TCP,15443:30182/TCP   10m
I would think this means that I can curl the IP from my host machine (mac OS). However, when I run
curl -v 192.168.5.15
from my Mac I get connection timeout:
Copy code
happy-istio % curl -sv 192.168.5.15
*   Trying 192.168.5.15:80...
* connect to 192.168.5.15 port 80 failed: Operation timed out
* Failed to connect to 192.168.5.15 port 80 after 75004 ms: Operation timed out
* Closing connection 0
Any idea how I can access this ingress load balancer IP from my mac?