0

我正在研究 DevOps 解决方案,并尝试在 kubernetes 上自动化蓝绿部署解决方案。但是,我们面临的问题是,在移除虚拟服务时,istio 应用路由规则太慢,并且需要很长时间才能生效。我们试图等待 60 秒来等待规则更新并销毁旧的 pod。我们没有想法说6​​0s就足以完成路线变更,如果超过60s就会有停机时间才能生效。想获得一些关于如何检查路线(仅限绿色路线)是否正确更新的建议?以及如何让 istio 应用执行得更快?谢谢。

这是应用虚拟服务的 yaml 文件:

apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  namespace: xxx-d
  name: xxx-virtualservice
  labels:
    microservice: xxx-new
spec:
  hosts:
  - xxx.com
  gateways:
  - mesh
  - http-gateway.istio-system.svc.cluster.local
  - https-gateway.istio-system.svc.cluster.local
  http:
  - headers:
      request:
        set:
          x-forwarded-port: '443'
          x-forwarded-proto: https
    route:
    - destination:
        host: xxx-service.svc.cluster.local
        port:
          number: 8080
    retries:
      attempts: 3
      retryOn: gateway-error,connect-failure,refused-stream
    timeout: 3s
4

0 回答 0