美文网首页
Istio 填坑记(一)

Istio 填坑记(一)

作者: getsu | 来源:发表于2019-12-16 18:26 被阅读0次

    问题: 任何启用了sidecar的服务,往外发送http请求的时候,15秒就超时。

    调查发现, 对于K8S集群外部的访问, 默认都是15秒超时, 需要加以下配置解决:

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-se-test
    spec:
      hosts:
      - TargetHost
      location: MESH_EXTERNAL
      ports:
      - number: 80
        name: example-http
        protocol: HTTP
      resolution: DNS
    
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
    spec:
      hosts:
      - TargetHost
      http:
      - route:
          - destination:
              host: TargetHost
        timeout: 100s
    

    相关文章

      网友评论

          本文标题:Istio 填坑记(一)

          本文链接:https://www.haomeiwen.com/subject/fmidnctx.html