Clarify kubelet_dockershim_nodocker error message

Clarify the error message returned when trying to use the docker runtime
on a Kubelet that was compiled without Docker.

We removed the "w/" and "w/o", which can be confusing abbreviations, and
also add slightly more detail on the actual error.
This commit is contained in:
mattjmcnaughton 2020-05-10 10:22:56 -04:00
parent ba35704b51
commit 1a63e6fead
No known key found for this signature in database
GPG Key ID: BC530981A9A1CC9D

View File

@ -32,5 +32,5 @@ func runDockershim(kubeCfg *kubeletconfiginternal.KubeletConfiguration,
remoteImageEndpoint string,
nonMasqueradeCIDR string) error {
return fmt.Errorf("trying to use docker runtime, w/ Kubelet compiled w/o docker support")
return fmt.Errorf("trying to use docker runtime when Kubelet was compiled without docker support")
}