0

我已经按照文档配置了一个带有 istio-ingressgateway 的 K8S集群

尽管 HPE Con​​tainer Platform 托管的 haproxy 网关可以将流量路由到 istio-ingressgateway,但我想直接访问主机端点。

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

4

1 回答 1

0

这是我找到信息的方式:

$ 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 文档

于 2021-05-30T14:49:26.920 回答