Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for unhealthyPodEvictionPolicy (0.4 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/policy.v1.PodDisruptionBudget.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:32:27 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/policy.v1.PodDisruptionBudget.yaml

      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
        matchLabels:
          matchLabelsKey: matchLabelsValue
      unhealthyPodEvictionPolicy: unhealthyPodEvictionPolicyValue
    status:
      conditions:
      - lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:32:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.PodDisruptionBudget.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1/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.1K bytes
    - Viewed (0)
  5. pkg/registry/policy/poddisruptionbudget/strategy.go

    		if !unhealthyPodEvictionPolicyInUse(oldPDBSpec) {
    			pdbSpec.UnhealthyPodEvictionPolicy = nil
    		}
    	}
    }
    
    func unhealthyPodEvictionPolicyInUse(oldPDBSpec *policy.PodDisruptionBudgetSpec) bool {
    	if oldPDBSpec == nil {
    		return false
    	}
    	if oldPDBSpec.UnhealthyPodEvictionPolicy != nil {
    		return true
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:25:42 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).
    	// +optional
    	UnhealthyPodEvictionPolicy *UnhealthyPodEvictionPolicyType `json:"unhealthyPodEvictionPolicy,omitempty" protobuf:"bytes,4,opt,name=unhealthyPodEvictionPolicy"`
    }
    
    // UnhealthyPodEvictionPolicyType defines the criteria for when unhealthy pods
    // should be considered for eviction.
    // +enum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. manifests/charts/gateway/values.schema.json

                  ]
                },
                "maxUnavailable": {
                  "type": [
                    "integer",
                    "string"
                  ]
                },
                "unhealthyPodEvictionPolicy": {
                  "type": "string",
                  "enum": [
                    "",
                    "IfHealthyBudget",
                    "AlwaysAllow"
                  ]
                }
              }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top