_=fs.Bool("redirect-container-streaming",false,"[REMOVED]")// TODO: Delete in v1.22
fs.MarkDeprecated("redirect-container-streaming","Container streaming redirection has been removed from the kubelet as of v1.20, and this flag will be removed in v1.22. For more details, see http://git.k8s.io/enhancements/keps/sig-node/20191205-container-streaming-requests.md")
fs.StringVar(&s.PodSandboxImage,"pod-infra-container-image",s.PodSandboxImage,fmt.Sprintf("Specified image will not be pruned by the image garbage collector. "+
"When container-runtime is set to 'docker', all containers in each pod will use the network/ipc namespaces from this image. Other CRI implementations have their own configuration to set this image."))
fs.StringVar(&s.DockerEndpoint,"docker-endpoint",s.DockerEndpoint,fmt.Sprintf("Use this for the docker endpoint to communicate with. %s",dockerOnlyWarning))
fs.DurationVar(&s.ImagePullProgressDeadline.Duration,"image-pull-progress-deadline",s.ImagePullProgressDeadline.Duration,fmt.Sprintf("If no pulling progress is made before this deadline, the image pulling will be cancelled. %s",dockerOnlyWarning))
fs.StringVar(&s.NetworkPluginName,"network-plugin",s.NetworkPluginName,fmt.Sprintf("The name of the network plugin to be invoked for various events in kubelet/pod lifecycle. %s",dockerOnlyWarning))
fs.StringVar(&s.CNIConfDir,"cni-conf-dir",s.CNIConfDir,fmt.Sprintf("The full path of the directory in which to search for CNI config files. %s",dockerOnlyWarning))
fs.StringVar(&s.CNIBinDir,"cni-bin-dir",s.CNIBinDir,fmt.Sprintf("A comma-separated list of full paths of directories in which to search for CNI plugin binaries. %s",dockerOnlyWarning))
fs.StringVar(&s.CNICacheDir,"cni-cache-dir",s.CNICacheDir,fmt.Sprintf("The full path of the directory in which CNI should store cache files. %s",dockerOnlyWarning))
fs.Int32Var(&s.NetworkPluginMTU,"network-plugin-mtu",s.NetworkPluginMTU,fmt.Sprintf("The MTU to be passed to the network plugin, to override the default. Set to 0 to use the default 1460 MTU. %s",dockerOnlyWarning))
fs.StringVar(&s.ImageCredentialProviderConfigFile,"image-credential-provider-config",s.ImageCredentialProviderConfigFile,"The path to the credential provider plugin config file.")
fs.StringVar(&s.ImageCredentialProviderBinDir,"image-credential-provider-bin-dir",s.ImageCredentialProviderBinDir,"The path to the directory where credential provider plugin binaries are located.")