Merge pull request #89296 from danwinship/random-emptily

Don't log whether we're using iptables --random-fully
This commit is contained in:
Kubernetes Prow Robot
2020-04-02 12:42:24 -07:00
committed by GitHub
3 changed files with 0 additions and 9 deletions

View File

@@ -909,9 +909,6 @@ func (proxier *Proxier) syncProxyRules() {
}
if proxier.iptables.HasRandomFully() {
masqRule = append(masqRule, "--random-fully")
klog.V(3).Info("Using `--random-fully` in the MASQUERADE rule for iptables")
} else {
klog.V(3).Info("Not using `--random-fully` in the MASQUERADE rule for iptables because the local version of iptables does not support it")
}
writeLine(proxier.natRules, masqRule...)