Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stopped_ (0.16 sec)

  1. pkg/kubelet/kubelet_pods.go

    		case containerStatus.State.Running != nil:
    			running++
    		case containerStatus.State.Terminated != nil:
    			stopped++
    			if containerStatus.State.Terminated.ExitCode == 0 {
    				succeeded++
    			}
    		case containerStatus.State.Waiting != nil:
    			if containerStatus.LastTerminationState.Terminated != nil {
    				stopped++
    			} else {
    				waiting++
    			}
    		default:
    			unknown++
    		}
    	}
    
    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

    	}
    
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    	// Pods that are not runnable must be stopped - return a typed error to the pod worker
    	if !runnable.Admit {
    		klog.V(2).InfoS("Pod is not runnable and must have running containers stopped", "pod", klog.KObj(pod), "podUID", pod.UID, "message", runnable.Message)
    		var syncErr error
    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