Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for MaxUnavailable (1.26 sec)

  1. manifests/charts/gateway/values.yaml

      # `minAvailable` or `maxUnavailable`. For example, to set the
      # minimum number of available replicas to 1, you can update this value as follows:
      #
      # podDisruptionBudget:
      #   minAvailable: 1
      #
      # Or, to allow a maximum of 1 unavailable replica, you can set:
      #
      # podDisruptionBudget:
      #   maxUnavailable: 1
      #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/controller/statefulset/stateful_set_utils_test.go

    		{maxUnavailable: ptr.To(intstr.FromInt32(0)), replicaCount: 0, expectedMaxUnavailable: 1},
    		{maxUnavailable: ptr.To(intstr.FromString("10%")), replicaCount: 25, expectedMaxUnavailable: 2},
    		{maxUnavailable: ptr.To(intstr.FromString("100%")), replicaCount: 5, expectedMaxUnavailable: 5},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils.go

    }
    
    // getStatefulSetMaxUnavailable calculates the real maxUnavailable number according to the replica count
    // and maxUnavailable from rollingUpdateStrategy. The number defaults to 1 if the maxUnavailable field is
    // not set, and it will be round down to at least 1 if the maxUnavailable value is a percentage.
    // Note that API validation has already guaranteed the maxUnavailable field to be >1 if it is an integer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

      labels:
        {{- .Values.labels | toYaml | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      updateStrategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 0
      selector:
        matchLabels:
          app: ztunnel
      template:
        metadata:
          labels:
            sidecar.istio.io/inject: "false"
            istio.io/dataplane-mode: none
            app: ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. samples/addons/kiali.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app.kubernetes.io/name: kiali
          app.kubernetes.io/instance: kiali
      strategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 1
        type: RollingUpdate
      template:
        metadata:
          name: kiali
          labels:
            helm.sh/chart: kiali-server-1.85.0
            app: kiali
            app.kubernetes.io/name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	}
    
    	var minAvailable string
    	var maxUnavailable string
    	if obj.Spec.MinAvailable != nil {
    		minAvailable = obj.Spec.MinAvailable.String()
    	} else {
    		minAvailable = "N/A"
    	}
    
    	if obj.Spec.MaxUnavailable != nil {
    		maxUnavailable = obj.Spec.MaxUnavailable.String()
    	} else {
    		maxUnavailable = "N/A"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    					Namespace:         "ns2",
    					Name:              "pdb2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: policy.PodDisruptionBudgetSpec{
    					MaxUnavailable: &maxUnavailable,
    				},
    				Status: policy.PodDisruptionBudgetStatus{
    					DisruptionsAllowed: 5,
    				},
    			},
    			// Columns: Name, Min Available, Max Available, Allowed Disruptions, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	//
    	// Enable MatchLabelKeys in PodTopologySpread.
    	MatchLabelKeysInPodTopologySpread featuregate.Feature = "MatchLabelKeysInPodTopologySpread"
    
    	// owner: @krmayankk
    	// alpha: v1.24
    	//
    	// Enables maxUnavailable for StatefulSet
    	MaxUnavailableStatefulSet featuregate.Feature = "MaxUnavailableStatefulSet"
    
    	// owner: @cynepco3hahue(alukiano) @cezaryzukowski @k-wiatrzyk
    	// alpha: v1.21
    	// beta: v1.22
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"maxUnavailable": {
    						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)
  10. api/openapi-spec/swagger.json

          "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.",
          "properties": {
            "maxUnavailable": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top