creamy-agency-47925
08/07/2024, 5:41 PMhappy-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:
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?