Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContainersNotReady (0.25 sec)

  1. pkg/kubelet/status/generate_test.go

    					{Name: "1234"},
    				},
    			},
    			containerStatuses: []v1.ContainerStatus{},
    			podPhase:          v1.PodRunning,
    			expectReady:       getPodCondition(v1.ContainersReady, v1.ConditionFalse, ContainersNotReady, "containers with unknown status: [1234]"),
    		},
    		{
    			spec: &v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "1234"},
    					{Name: "5678"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  2. pkg/kubelet/status/generate.go

    	PodCompleted = "PodCompleted"
    	// PodFailed says that the pod has failed and as such the containers have failed.
    	PodFailed = "PodFailed"
    	// ContainersNotReady says that one or more containers are not ready.
    	ContainersNotReady = "ContainersNotReady"
    	// ContainersNotInitialized says that one or more init containers have not succeeded.
    	ContainersNotInitialized = "ContainersNotInitialized"
    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