Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for minAvailable (0.12 sec)

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

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "minAvailable": "minAvailableValue",
        "selector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.PodDisruptionBudget.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      maxUnavailable: maxUnavailableValue
      minAvailable: minAvailableValue
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
          - valuesValue
        matchLabels:
          matchLabelsKey: matchLabelsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1.PodDisruptionBudget.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "minAvailable": "minAvailableValue",
        "selector": {
          "matchLabels": {
            "matchLabelsKey": "matchLabelsValue"
          },
          "matchExpressions": [
            {
              "key": "keyValue",
    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/v1beta1/types_swagger_doc_generated.go

    }
    
    var map_PodDisruptionBudgetSpec = map[string]string{
    	"":                           "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
    	"minAvailable":               "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod.  So for example you can prevent all voluntary evictions by specifying \"100%\".",
    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

    message PodDisruptionBudgetSpec {
      // An eviction is allowed if at least "minAvailable" pods selected by
      // "selector" will still be available after the eviction, i.e. even in the
      // absence of the evicted pod.  So for example you can prevent all voluntary
      // evictions by specifying "100%".
      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString minAvailable = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption.go

    		}
    	} else if pdb.Spec.MinAvailable != nil {
    		if pdb.Spec.MinAvailable.Type == intstr.Int {
    			desiredHealthy = pdb.Spec.MinAvailable.IntVal
    			expectedCount = int32(len(pods))
    		} else if pdb.Spec.MinAvailable.Type == intstr.String {
    			expectedCount, unmanagedPods, err = dc.getExpectedScale(ctx, pdb, pods)
    			if err != nil {
    				return
    			}
    
    			var minAvailable int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1/generated.proto

    message PodDisruptionBudgetSpec {
      // An eviction is allowed if at least "minAvailable" pods selected by
      // "selector" will still be available after the eviction, i.e. even in the
      // absence of the evicted pod.  So for example you can prevent all voluntary
      // evictions by specifying "100%".
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString minAvailable = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. operator/pkg/object/objects.go

    		}
    		return false
    	}
    	if spec["maxUnavailable"] != nil && spec["minAvailable"] != nil {
    		// When both maxUnavailable and minAvailable present and
    		// neither has value 0, this is considered a conflict,
    		// then maxUnavailable will take precedence.
    		if !isDefault(spec["maxUnavailable"]) && !isDefault(spec["minAvailable"]) {
    			delete(spec, "minAvailable")
    			// Make sure that the json and yaml representation of the object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/policy/v1beta1/generated.proto

    message PodDisruptionBudgetSpec {
      // An eviction is allowed if at least "minAvailable" pods selected by
      // "selector" will still be available after the eviction, i.e. even in the
      // absence of the evicted pod.  So for example you can prevent all voluntary
      // evictions by specifying "100%".
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString minAvailable = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. manifests/charts/gateway/values.schema.json

                    "type": "string"
                  }
                }
              }
            },
            "podDisruptionBudget": {
              "type": "object",
              "properties": {
                "minAvailable": {
                  "type": [
                    "integer",
                    "string"
                  ]
                },
                "maxUnavailable": {
                  "type": [
                    "integer",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top