Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Calling (0.08 sec)

  1. pkg/kubelet/kubelet_pods.go

    	if err := kl.containerRuntime.KillPod(ctx, pod, p, gracePeriodOverride); err != nil {
    		return err
    	}
    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    		klog.V(2).InfoS("Failed to update QoS cgroups while killing pod", "err", err)
    	}
    	return nil
    }
    
    // makePodDataDirs creates the dirs for the pod datas.
    func (kl *Kubelet) makePodDataDirs(pod *v1.Pod) error {
    	uid := pod.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    			if !wait.Interrupted(err) {
    				kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToKillPod, "error killing pod: %v", err)
    				syncErr = fmt.Errorf("error killing pod: %w", err)
    				utilruntime.HandleError(syncErr)
    			}
    		} else {
    			// There was no error killing the pod, but the pod cannot be run.
    			// Return an error to signal that the sync loop should back off.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top