Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for DisruptionTarget (0.21 sec)

  1. pkg/kubelet/eviction/eviction_manager.go

    		var condition *v1.PodCondition
    		if utilfeature.DefaultFeatureGate.Enabled(features.PodDisruptionConditions) {
    			condition = &v1.PodCondition{
    				Type:    v1.DisruptionTarget,
    				Status:  v1.ConditionTrue,
    				Reason:  v1.PodReasonTerminationByKubelet,
    				Message: message,
    			}
    		}
    		if m.evictPod(pod, gracePeriodOverride, message, annotations, condition) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    				}
    
    				wantPodStatus := tc.wantPodStatus.DeepCopy()
    				if enablePodDisruptionConditions {
    					wantPodStatus.Conditions = append(wantPodStatus.Conditions, v1.PodCondition{
    						Type:    "DisruptionTarget",
    						Status:  "True",
    						Reason:  "TerminationByKubelet",
    						Message: "The node was low on resource: memory. Threshold quantity: 2Gi, available: 1500Mi. ",
    					})
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			pods: []*v1.Pod{st.MakePod().Name("p1").UID("p1").Priority(lowPriority).Node("node1").Terminating().
    				Condition(v1.DisruptionTarget, v1.ConditionTrue, v1.PodReasonPreemptionByScheduler).Obj()},
    			nodes:    []string{"node1"},
    			expected: false,
    		},
    		{
    			name:     "non-victim Pods terminating, feature PodDisruptionConditions is enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    					ContainerStatuses: []v1.ContainerStatus{
    						runningState("containerA"),
    						runningState("containerB"),
    					},
    					Conditions: []v1.PodCondition{{
    						Type:               v1.DisruptionTarget,
    						Status:             v1.ConditionTrue,
    						LastTransitionTime: normalized_now,
    					}},
    				},
    				ObjectMeta: metav1.ObjectMeta{Name: "my-pod", DeletionTimestamp: &now},
    			},
    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. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Add DisruptionTarget condition to the pod preempted by Kubelet to make room for a critical pod ([#118219](https://github.com/kubernetes/kubernetes/pull/118219), [@mimowo](https://github.com/mimowo)) [SIG Node and Testing]
    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.26.md

    ### Bug or Regression
    
    - Add DisruptionTarget condition to the pod preempted by Kubelet to make room for a critical pod ([#118221](https://github.com/kubernetes/kubernetes/pull/118221), [@mimowo](https://github.com/mimowo)) [SIG Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// PodScheduled represents status of the scheduling process for this pod.
    	PodScheduled PodConditionType = "PodScheduled"
    	// DisruptionTarget indicates the pod is about to be terminated due to a
    	// disruption (such as preemption, eviction API or garbage-collection).
    	DisruptionTarget PodConditionType = "DisruptionTarget"
    	// PodReadyToStartContainers pod sandbox is successfully configured and
    	// the pod is ready to launch containers.
    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. pkg/apis/core/types.go

    	// 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).
    	DisruptionTarget PodConditionType = "DisruptionTarget"
    )
    
    // PodCondition represents pod's condition
    type PodCondition struct {
    	Type   PodConditionType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		// node graceful shutdown). We do not re-generate the conditions based
    		// on the container statuses as they are added based on one-time events.
    		cType := v1.DisruptionTarget
    		if _, condition := podutil.GetPodConditionFromList(oldPodStatus.Conditions, cType); condition != nil {
    			s.Conditions = utilpod.ReplaceOrAppendPodCondition(s.Conditions, condition)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.25.md

    - Introduced support for handling pod failures with respect to the configured pod failure policy rules. ([#111113](https://github.com/kubernetes/kubernetes/pull/111113), [@mimowo](https://github.com/mimowo))
    - Introduction of the `DisruptionTarget` pod condition type. Its `reason` field indicates the reason for pod termination:
      - PreemptionByKubeScheduler (Pod preempted by kube-scheduler)
      - DeletionByTaintManager (Pod deleted by taint manager due to NoExecute taint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top