klog.Warningf("unknown 'kubernetes.io' or 'k8s.io' labels specified with --node-labels: %v",unknownLabels.List())
klog.Warningf("in 1.15, --node-labels in the 'kubernetes.io' namespace must begin with an allowed prefix (%s) or be in the specifically allowed set (%s)",strings.Join(kubeletapis.KubeletLabelNamespaces(),", "),strings.Join(kubeletapis.KubeletLabels(),", "))
fs.BoolVar(&f.ExperimentalCheckNodeCapabilitiesBeforeMount,"experimental-check-node-capabilities-before-mount",f.ExperimentalCheckNodeCapabilitiesBeforeMount,"[Experimental] if set true, the kubelet will check the underlying node for required components (binaries, etc.) before performing the mount")
fs.BoolVar(&f.ExperimentalNodeAllocatableIgnoreEvictionThreshold,"experimental-allocatable-ignore-eviction",f.ExperimentalNodeAllocatableIgnoreEvictionThreshold,"When set to 'true', Hard Eviction Thresholds will be ignored while calculating Node Allocatable. See https://kubernetes.io/docs/tasks/administer-cluster/reserve-compute-resources/ for more details. [default=false]")
fs.Var(&bindableNodeLabels,"node-labels","<Warning: Alpha feature> Labels to add when registering the node in the cluster. Labels must be key=value pairs separated by ','.")
fs.Var(&bindableNodeLabels,"node-labels",fmt.Sprintf("<Warning: Alpha feature> Labels to add when registering the node in the cluster. Labels must be key=value pairs separated by ','. Labels in the 'kubernetes.io' namespace must begin with an allowed prefix (%s) or be in the specifically allowed set (%s)",strings.Join(kubeletapis.KubeletLabelNamespaces(),", "),strings.Join(kubeletapis.KubeletLabels(),", ")))
fs.StringVar(&f.VolumePluginDir,"volume-plugin-dir",f.VolumePluginDir,"The full path of the directory in which to search for additional third party volume plugins")
fs.StringVar(&f.LockFilePath,"lock-file",f.LockFilePath,"<Warning: Alpha feature> The path to file for kubelet to use as a lock file.")
fs.BoolVar(&f.ExitOnLockContention,"exit-on-lock-contention",f.ExitOnLockContention,"Whether kubelet should exit upon lock-file contention.")