Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for unhealthyPodEvictionPolicy (0.47 sec)

  1. pkg/apis/policy/types.go

    	// the evicted pod. For example, one can prevent all voluntary evictions
    	// by specifying 0. This is a mutually exclusive setting with "minAvailable".
    	// +optional
    	MaxUnavailable *intstr.IntOrString
    
    	// UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
    	// should be considered for eviction. Current implementation considers healthy pods,
    	// as pods that have status.conditions item with type="Ready",status="True".
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1/generated.proto

      // by specifying 0. This is a mutually exclusive setting with "minAvailable".
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1beta1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.UnhealthyPodEvictionPolicy != nil {
    		i -= len(*m.UnhealthyPodEvictionPolicy)
    		copy(dAtA[i:], *m.UnhealthyPodEvictionPolicy)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.UnhealthyPodEvictionPolicy)))
    		i--
    		dAtA[i] = 0x22
    	}
    	if m.MaxUnavailable != nil {
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    	"unhealthyPodEvictionPolicy": "UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=\"Ready\",status=\"True\".\n\nValid policies...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1/generated.proto

      // by specifying 0. This is a mutually exclusive setting with "minAvailable".
      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // by specifying 0. This is a mutually exclusive setting with "minAvailable".
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/storage/eviction.go

    		// If the pod is healthy, it should be guarded by the PDB.
    		if !podutil.IsPodReady(pod) {
    			if feature.DefaultFeatureGate.Enabled(features.PDBUnhealthyPodEvictionPolicy) {
    				if pdb.Spec.UnhealthyPodEvictionPolicy != nil && *pdb.Spec.UnhealthyPodEvictionPolicy == policyv1.AlwaysAllow {
    					// Delete the unhealthy pod, it doesn't count towards currentHealthy and desiredHealthy and we should not decrement disruptionsAllowed.
    					updateDeletionOptions = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // by specifying 0. This is a mutually exclusive setting with "minAvailable".
      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "x-kubernetes-patch-strategy": "replace"
              },
              "unhealthyPodEvictionPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

       ([#113500](https://github.com/kubernetes/kubernetes/pull/113500), [@kerthcet](https://github.com/kerthcet))
    - '`PodDisruptionBudget` now adds an alpha `spec.unhealthyPodEvictionPolicy` field.
      When the `PDBUnhealthyPodEvictionPolicy` feature-gate is enabled in `kube-apiserver`,
      setting this field to `"AlwaysAllow"` allows pods to be evicted if they do not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top