Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for pidStatus (0.3 sec)

  1. pkg/controller/job/job_controller_test.go

    					PodFailurePolicy: &batch.PodFailurePolicy{
    						Rules: onExitCodeRules,
    					},
    				},
    			},
    			pods: []v1.Pod{
    				{
    					Status: v1.PodStatus{
    						Phase: v1.PodRunning,
    					},
    				},
    				{
    					Status: v1.PodStatus{
    						Phase: v1.PodFailed,
    						ContainerStatuses: []v1.ContainerStatus{
    							{
    								Name: "main-container",
    								State: v1.ContainerState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		{Name: "IP", Type: "string", Priority: 1, Description: apiv1.PodStatus{}.SwaggerDoc()["podIP"]},
    		{Name: "Node", Type: "string", Priority: 1, Description: apiv1.PodSpec{}.SwaggerDoc()["nodeName"]},
    		{Name: "Nominated Node", Type: "string", Priority: 1, Description: apiv1.PodStatus{}.SwaggerDoc()["nominatedNodeName"]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    // effect on scheduling.
    func isPodUpdated(oldPod, newPod *v1.Pod) bool {
    	strip := func(pod *v1.Pod) *v1.Pod {
    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    		return p
    	}
    	return !reflect.DeepEqual(strip(oldPod), strip(newPod))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	// mark pods[1] ~ pods[totalNum-1] as unschedulable and add them back
    	for i := 1; i < totalNum; i++ {
    		unschedulablePod := expectedPods[i].DeepCopy()
    		unschedulablePod.Status = v1.PodStatus{
    			Conditions: []v1.PodCondition{
    				{
    					Type:   v1.PodScheduled,
    					Status: v1.ConditionFalse,
    					Reason: v1.PodReasonUnschedulable,
    				},
    			},
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

      - `PodSpec.Container.ResizePolicy` (new object) gives users control over how their containers are resized.
      - `PodStatus.Resize` status describes the state of a requested Pod resize.
      - `PodStatus.ResourcesAllocated` describes node resources allocated to Pod.
      - `PodStatus.Resources` describes node resources applied to running containers by CRI.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.29.md

    - `GetPodQOS(pod *core.Pod)` function now returns the stored value from `PodStatus.QOSClass`, if set. To compute/evaluate the value of `QOSClass` from scratch, `ComputePodQOS(pod*core.Pod)` must be used. ([#119665](https://github.com/kubernetes/kubernetes/pull/119665), [@vinaykul](https://github.com/vinaykul))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top