0

嗨,我正在使用 Istio 并按照此链接/文档进行远程访问Kiali dashboard。使用YAML's我可以Grafana, Prometheus and Tracing使用CLusterIP:nodePort.

但是 Kiali 端点给出了错误,

upstream connect error or disconnect/reset before headers 

命令kubectl get svc istio-ingressgateway -n istio-system显示以下端口,

80:31380/TCP,443:31390/TCP,31400:31400/TCP,15011:30716/TCP,8060:32087/TCP,853:30887/TCP,15030:31311/TCP,15031:31312/TCP,15032:31313/TCP,15029:31314/TCP 

我可以访问 Grafana http://33.33.333.33:31312,Prometheus http://33.33.333.33:31311,Tracing,http://33.33.333.33:31313

Kiali 已映​​射到15029:31314/TCP且无法访问http://33.33.333.33:31314

我正在使用 Openshift v3.9,

oc v3.9.0+191fece
kubernetes v1.9.1+a0ce1bc657
Istio -
Version: 1.0.5
GitRevision: c1707e45e71c75d74bf3a5dec8c7086f32f32fad
GolangVersion: go1.10.4

注意 - 我知道我正在运行 v1.0.5 并参考 v1.4.0 文档。但是我在其中进行了所需的端口更改,istio-ingressgateway service yaml其中跟踪工作但 kiali 没有,

ports:
    - name: http2
      nodePort: 31380
      port: 80
      protocol: TCP
      targetPort: 80
    - name: https
      nodePort: 31390
      port: 443
      protocol: TCP
      targetPort: 443
    - name: tcp
      nodePort: 31400
      port: 31400
      protocol: TCP
      targetPort: 31400
    - name: tcp-pilot-grpc-tls
      nodePort: 30716
      port: 15011
      protocol: TCP
      targetPort: 15011
    - name: tcp-citadel-grpc-tls
      nodePort: 32087
      port: 8060
      protocol: TCP
      targetPort: 8060
    - name: tcp-dns-tls
      nodePort: 30887
      port: 853
      protocol: TCP
      targetPort: 853
    - name: http2-prometheus
      nodePort: 31311
      port: 15030
      protocol: TCP
      targetPort: 15030
    - name: http2-grafana
      nodePort: 31312
      port: 15031
      protocol: TCP
      targetPort: 15031
    - name: http2-tracing
      nodePort: 31313
      port: 15032
      protocol: TCP
      targetPort: 15032
    - name: http2-kiali
      nodePort: 31314
      port: 15029
      protocol: TCP
      targetPort: 15029
4

0 回答 0