Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OOMKilled (0.21 sec)

  1. pkg/kubelet/kuberuntime/helpers.go

    // 1. container has exited and exitcode is not zero.
    // 2. container is in unknown state.
    // 3. container gets OOMKilled.
    func isInitContainerFailed(status *kubecontainer.Status) bool {
    	// When oomkilled occurs, init container should be considered as a failure.
    	if status.Reason == "OOMKilled" {
    		return true
    	}
    
    	if status.State == kubecontainer.ContainerStateExited && status.ExitCode != 0 {
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_test.go

    			},
    			isFailed:    true,
    			description: "Init container in unknown state should return true",
    		},
    		{
    			status: &kubecontainer.Status{
    				Reason:   "OOMKilled",
    				ExitCode: 0,
    			},
    			isFailed:    true,
    			description: "Init container which reason is OOMKilled should return true",
    		},
    		{
    			status: &kubecontainer.Status{
    				State:    kubecontainer.ContainerStateExited,
    				ExitCode: 0,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.22.md

    ### Feature
    
    - A `system-cluster-critical` pod should not get a low OOM Score. 
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    ### Documentation
    
    - Documented the reason field in CRI API to ensure it equals `OOMKilled` for the containers terminated by OOM killer ([#112977](https://github.com/kubernetes/kubernetes/pull/112977), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top