Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ContainersReady (0.37 sec)

  1. pkg/kubelet/types/pod_status_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.PodDisruptionConditions, true)
    
    	trueCases := []v1.PodConditionType{
    		v1.PodScheduled,
    		v1.PodReady,
    		v1.PodInitialized,
    		v1.ContainersReady,
    		v1.PodReadyToStartContainers,
    	}
    
    	for _, tc := range trueCases {
    		if !PodConditionByKubelet(tc) {
    			t.Errorf("Expect %q to be condition owned by kubelet.", tc)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    								Type:   v1.PodInitialized,
    								Status: v1.ConditionTrue,
    							},
    							{
    								Type:   v1.PodReady,
    								Status: v1.ConditionTrue,
    							},
    							{
    								Type:   v1.ContainersReady,
    								Status: v1.ConditionTrue,
    							},
    						},
    					},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Namespace:         "default",
    						Name:              "pod1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	updateConditionFunc(v1.PodReady, GeneratePodReadyCondition(&pod.Spec, status.Conditions, allContainerStatuses, status.Phase))
    	updateConditionFunc(v1.ContainersReady, GenerateContainersReadyCondition(&pod.Spec, allContainerStatuses, status.Phase))
    	m.updateStatusInternal(pod, status, false, false)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				QOSClass: v1.PodQOSBestEffort,
    				Conditions: []v1.PodCondition{
    					{Type: v1.PodInitialized, Status: v1.ConditionTrue},
    					{Type: v1.PodReady, Status: v1.ConditionFalse, Reason: "PodFailed"},
    					{Type: v1.ContainersReady, Status: v1.ConditionFalse, Reason: "PodFailed"},
    					{Type: v1.PodScheduled, Status: v1.ConditionTrue},
    				},
    				ContainerStatuses: []v1.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    						Status: v1.ConditionFalse,
    						Reason: "PodFailed",
    					},
    					{
    						Type:   v1.PodScheduled,
    						Status: v1.ConditionTrue,
    					},
    					{
    						Type:   v1.ContainersReady,
    						Status: v1.ConditionFalse,
    						Reason: "PodFailed",
    					},
    				},
    				Message: "Message",
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// PodInitialized means that all init containers in the pod have started successfully.
    	PodInitialized PodConditionType = "Initialized"
    	// ContainersReady indicates whether all containers in the pod are ready.
    	ContainersReady PodConditionType = "ContainersReady"
    	// DisruptionTarget indicates the pod is about to be terminated due to a
    	// disruption (such as preemption, eviction API or garbage-collection).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    type PodConditionType string
    
    // These are built-in conditions of pod. An application may use a custom condition not listed here.
    const (
    	// ContainersReady indicates whether all containers in the pod are ready.
    	ContainersReady PodConditionType = "ContainersReady"
    	// PodInitialized means that all init containers in the pod have started successfully.
    	PodInitialized PodConditionType = "Initialized"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top