Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for ContainersReady (0.23 sec)

  1. 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)
  2. 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)
  3. pkg/api/v1/pod/util.go

    // Returns nil if the condition is not present.
    func GetContainersReadyCondition(status v1.PodStatus) *v1.PodCondition {
    	_, condition := GetPodCondition(&status, v1.ContainersReady)
    	return condition
    }
    
    // GetPodCondition extracts the provided condition from the given status and returns that.
    // Returns nil and -1 if the condition is not present, and the index of the located condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K 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. CHANGELOG/CHANGELOG-1.11.md

    * CRI: The container log path has been changed from containername_attempt#.log to containername/attempt#.log  ([#62015](https://github.com/kubernetes/kubernetes/pull/62015), [@feiskyer](https://github.com/feiskyer))
    * Introduced the `ContainersReady` condition in Pod status. ([#64646](https://github.com/kubernetes/kubernetes/pull/64646), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. 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