Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unreadyContainer (0.3 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    	tests := []struct {
    		name                                       string
    		pod                                        *v1.Pod
    		currentStatus                              *kubecontainer.PodStatus
    		unreadyContainer                           []string
    		previousStatus                             v1.PodStatus
    		isPodTerminal                              bool
    		enablePodDisruptionConditions              bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pkg/kubelet/status/generate.go

    		}
    	}
    	unknownContainers := []string{}
    	unreadyContainers := []string{}
    
    	for _, container := range spec.InitContainers {
    		if !kubetypes.IsRestartableInitContainer(&container) {
    			continue
    		}
    
    		if containerStatus, ok := podutil.GetContainerStatus(containerStatuses, container.Name); ok {
    			if !containerStatus.Ready {
    				unreadyContainers = append(unreadyContainers, container.Name)
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top