@@ -168,9 +168,6 @@ func (o *Options) AddFlags(fs *pflag.FlagSet) {
fs.Int32Var(&o.metricsPort,"metrics-port",o.metricsPort,"The port to bind the metrics server. Use 0 to disable.")
fs.Int32Var(o.config.OOMScoreAdj,"oom-score-adj",utilpointer.Int32PtrDerefOr(o.config.OOMScoreAdj,int32(qos.KubeProxyOOMScoreAdj)),"The oom-score-adj value for kube-proxy process. Values must be within the range [-1000, 1000]")
fs.Int32Var(o.config.IPTables.MasqueradeBit,"iptables-masquerade-bit",utilpointer.Int32PtrDerefOr(o.config.IPTables.MasqueradeBit,14),"If using the pure iptables proxy, the bit of the fwmark space to mark packets requiring SNAT with. Must be within the range [0, 31].")
"Maximum number of NAT connections to track (0 to leave as-is). This overrides conntrack-max-per-core and conntrack-min.")
fs.MarkDeprecated("conntrack-max","This feature will be removed in a later release.")
fs.StringVar(&o.config.ResourceContainer,"resource-container",o.config.ResourceContainer,"Absolute name of the resource-only container to create and run the Kube-proxy in (Default: /kube-proxy).")
fs.MarkDeprecated("resource-container","This feature will be removed in a later release.")
}
...
...
@@ -662,13 +655,6 @@ func (s *ProxyServer) birthCry() {