如何检索 HPE Ezmeral 容器平台托管集群的 istio 入口网关主机?

How can I retrieve the istio ingress gateway hosts for an HPE Ezmeral Container Platform managed cluster?

我已经根据 docs.

配置了带有 istio-ingressgateway 的 K8S 集群

虽然 HPE 容器平台托管的 haproxy 网关可以将流量路由到 istio-ingressgateway,但我想直接访问主机端点。

如何确定避开托管 haproxy 网关的主机的入口 IP 地址和端口?

我是这样找到信息的:

$ kubectl get po -l istio=ingressgateway -n istio-system \
     -o jsonpath='{.items[*].status.hostIP}'
10.1.0.193 10.1.0.132 10.1.0.174

找到的端口如下:

$ kubectl -n istio-system get service istio-ingressgateway \
     -o jsonpath='{.spec.ports[?(@.name=="http2")].nodePort}'
32725

$ kubectl -n istio-system get service istio-ingressgateway \
     -o jsonpath='{.spec.ports[?(@.name=="https")].nodePort}'
30557

$ kubectl -n istio-system get service istio-ingressgateway \
     -o jsonpath='{.spec.ports[?(@.name=="tcp")].nodePort}'
[no data returned]

来源:istio docs