这适用于卷曲和镀铬
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: example
annotations:
ingress.kubernetes.io/ssl-passthrough: "true"
spec:
rules:
- host: example
http:
paths:
- backend:
serviceName: example
servicePort: 443
直到您创建一个网页,在该网页中您使用相同的ssl证书连接到该服务并使用来自同一个Kube上的其他服务的img调用(磁贴)。然后chrome想要回收http2连接,导致请求被发送到错误的pod。请注意,curl会继续为两个服务工作,因为它不会尝试回收以前的curl命令http2连接。有没有解决方法,除了运行两个不同的kube集群,所以chrome不回收http2连接?