iwita b9152718d2 new version 5 år sedan
..
.gitignore b9152718d2 new version 5 år sedan
BUILD b9152718d2 new version 5 år sedan
Dockerfile b9152718d2 new version 5 år sedan
Makefile b9152718d2 new version 5 år sedan
README.md b9152718d2 new version 5 år sedan
VERSION b9152718d2 new version 5 år sedan
main.go b9152718d2 new version 5 år sedan
tcp.go b9152718d2 new version 5 år sedan

README.md

Reproduction of k8s issue #74839

Network services with heavy load will cause "connection reset" from time to time. Especially those with big payloads. When packets with sequence number out-of-window arrived k8s node, conntrack marked them as INVALID. kube-proxy will ignore them, without rewriting DNAT. The packet goes back the original pod, who doesn't recognize the packet because of the wrong source ip, end up RSTing the connection.

Reference

https://github.com/kubernetes/kubernetes/issues/74839