Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ContainersReady (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

                },
                {
                    "apiVersion": "v1",
                    "fieldsType": "FieldsV1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

        type: Initialized
      - lastProbeTime: null
        lastTransitionTime: '2019-07-08T09:41:59Z'
        status: 'True'
        type: Ready
      - lastProbeTime: null
        lastTransitionTime: null
        status: 'True'
        type: ContainersReady
      - lastProbeTime: null
        lastTransitionTime: '2019-07-08T09:31:18Z'
        status: 'True'
        type: PodScheduled
      containerStatuses:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/pod.yaml

        type: Initialized
      - lastProbeTime: null
        lastTransitionTime: '2019-07-08T09:41:59Z'
        status: 'True'
        type: Ready
      - lastProbeTime: null
        lastTransitionTime: null
        status: 'True'
        type: ContainersReady
      - lastProbeTime: null
        lastTransitionTime: '2019-07-08T09:31:18Z'
        status: 'True'
        type: PodScheduled
      containerStatuses:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  4. pkg/kubelet/types/pod_status.go

    )
    
    // PodConditionsByKubelet is the list of pod conditions owned by kubelet
    var PodConditionsByKubelet = []v1.PodConditionType{
    	v1.PodScheduled,
    	v1.PodReady,
    	v1.PodInitialized,
    	v1.ContainersReady,
    }
    
    // PodConditionByKubelet returns if the pod condition type is owned by kubelet
    func PodConditionByKubelet(conditionType v1.PodConditionType) bool {
    	for _, c := range PodConditionsByKubelet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
Back to top