fs.StringVar(&options.master,"master",options.master,"The address of the Kubernetes API server (overrides any value in kubeconfig)")
fs.Int32Var(&options.healthzPort,"healthz-port",options.healthzPort,"The port to bind the health check server. Use 0 to disable.")
fs.Var(componentconfig.IPVar{Val:&options.config.HealthzBindAddress},"healthz-bind-address","The IP address and port for the health check server to serve on (set to 0.0.0.0 for all interfaces)")
fs.Var(componentconfig.IPVar{Val:&options.config.MetricsBindAddress},"metrics-bind-address","The IP address and port for the metrics server to serve on (set to 0.0.0.0 for all interfaces)")
fs.Int32Var(options.config.OOMScoreAdj,"oom-score-adj",util.Int32PtrDerefOr(options.config.OOMScoreAdj,int32(qos.KubeProxyOOMScoreAdj)),"The oom-score-adj value for kube-proxy process. Values must be within the range [-1000, 1000]")
fs.StringVar(&options.config.ResourceContainer,"resource-container",options.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.")