Clear initial UDP conntrack entries for loadBalancerIPs

This commit is contained in:
Lars Ekman 2021-09-25 16:03:56 +02:00
parent a53e2eaeab
commit 4d6db6f1fc

View File

@ -1025,6 +1025,9 @@ func (proxier *Proxier) syncProxyRules() {
for _, extIP := range svcInfo.ExternalIPStrings() {
staleServices.Insert(extIP)
}
for _, extIP := range svcInfo.LoadBalancerIPStrings() {
staleServices.Insert(extIP)
}
}
}