From c5a2c69b9439e51a1d7cbdba8c958d239f384f64 Mon Sep 17 00:00:00 2001 From: logica0419 Date: Wed, 30 Apr 2025 23:51:11 +0900 Subject: [PATCH] add missing space in string concatenation (kubeadm) --- cmd/kubeadm/app/preflight/checks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/preflight/checks.go b/cmd/kubeadm/app/preflight/checks.go index 0c54b18bd93..3cd1e6b7bdd 100644 --- a/cmd/kubeadm/app/preflight/checks.go +++ b/cmd/kubeadm/app/preflight/checks.go @@ -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) }