Merge pull request #131563 from logica0419/kubeadm-string-concat

Add missing space in string concatenation (kubeadm)
This commit is contained in:
Kubernetes Prow Robot
2025-04-30 10:14:03 -07:00
committed by GitHub

View File

@@ -843,7 +843,7 @@ func (ipc ImagePullCheck) Check() (warnings, errorList []error) {
if err != nil {
klog.V(4).Infof("failed to detect the sandbox image for local container runtime, %v", err)
} else if criSandboxImage != ipc.sandboxImage {
klog.Warningf("detected that the sandbox image %q of the container runtime is inconsistent with that used by kubeadm."+
klog.Warningf("detected that the sandbox image %q of the container runtime is inconsistent with that used by kubeadm. "+
"It is recommended to use %q as the CRI sandbox image.", criSandboxImage, ipc.sandboxImage)
}