diff --git a/pkg/kubelet/pod_workers.go b/pkg/kubelet/pod_workers.go index 30850d830f6..aa03d2a5c7d 100644 --- a/pkg/kubelet/pod_workers.go +++ b/pkg/kubelet/pod_workers.go @@ -1508,7 +1508,7 @@ func (p *podWorkers) completeWork(podUID types.UID, phaseTransition bool, syncEr if status.pendingUpdate != nil { select { case p.podUpdates[podUID] <- struct{}{}: - klog.V(4).InfoS("Requeueing pod due to pending update", "podUID", podUID) + klog.V(4).InfoS("Requeuing pod due to pending update", "podUID", podUID) default: klog.V(4).InfoS("Pending update already queued", "podUID", podUID) } diff --git a/pkg/kubelet/prober/worker.go b/pkg/kubelet/prober/worker.go index 159112cfcb3..aea276de6c7 100644 --- a/pkg/kubelet/prober/worker.go +++ b/pkg/kubelet/prober/worker.go @@ -183,7 +183,7 @@ probeLoop: // Updating the periodic timer to run the probe again at intervals of probeTickerPeriod // starting from the moment a manual run occurs. probeTicker.Reset(probeTickerPeriod) - klog.V(4).InfoS("Triggerd Probe by manual run", "probeType", w.probeType, "pod", klog.KObj(w.pod), "podUID", w.pod.UID, "containerName", w.container.Name) + klog.V(4).InfoS("Triggered Probe by manual run", "probeType", w.probeType, "pod", klog.KObj(w.pod), "podUID", w.pod.UID, "containerName", w.container.Name) // continue } }