Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for unhealthyPodEvictionPolicy (0.34 sec)

  1. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    		})
    	}
    }
    
    func unhealthyPolicyPtr(unhealthyPodEvictionPolicy policy.UnhealthyPodEvictionPolicyType) *policy.UnhealthyPodEvictionPolicyType {
    	return &unhealthyPodEvictionPolicy
    }
    
    func specWithUnhealthyPodEvictionPolicy(unhealthyPodEvictionPolicy *policy.UnhealthyPodEvictionPolicyType) *policy.PodDisruptionBudgetSpec {
    	return &policy.PodDisruptionBudgetSpec{
    		UnhealthyPodEvictionPolicy: unhealthyPodEvictionPolicy,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. manifests/charts/gateway/values.yaml

      #   maxUnavailable: 1
      #
      # You can also specify the `unhealthyPodEvictionPolicy` field, and the valid values are `IfHealthyBudget` and `AlwaysAllow`.
      # For example, to set the `unhealthyPodEvictionPolicy` to `AlwaysAllow`, you can update this value as follows:
      #
      # podDisruptionBudget:
      #   minAvailable: 1
      #   unhealthyPodEvictionPolicy: AlwaysAllow
      #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.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. pkg/registry/core/pod/storage/eviction_test.go

    }
    
    func unhealthyPolicyPtr(unhealthyPodEvictionPolicy policyv1.UnhealthyPodEvictionPolicyType) *policyv1.UnhealthyPodEvictionPolicyType {
    	return &unhealthyPodEvictionPolicy
    }
    
    func unhealthyPolicyStr(unhealthyPodEvictionPolicy *policyv1.UnhealthyPodEvictionPolicyType) string {
    	if unhealthyPodEvictionPolicy == nil {
    		return "nil"
    	}
    	return string(*unhealthyPodEvictionPolicy)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.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 Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/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 Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1/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: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.27.md

    - The PodDisruptionBudget `spec.unhealthyPodEvictionPolicy` field has graduated to beta and is enabled by default. On servers with the feature enabled, this field may be set to `AlwaysAllow` to always allow unhealthy pods covered by the PodDisruptionBudget to be evicted. ([#115363](https://gith...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"),
    						},
    					},
    					"unhealthyPodEvictionPolicy": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top