Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for HorizontalPodAutoscaler (0.64 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta1.HorizontalPodAutoscaler.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.pb

    SataQiu <******@****.***> 1713430345 +0800
    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. pkg/apis/autoscaling/validation/validation_test.go

    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	errorCases := []struct {
    		horizontalPodAutoscaler autoscaling.HorizontalPodAutoscaler
    		msg                     string
    	}{{
    		horizontalPodAutoscaler: autoscaling.HorizontalPodAutoscaler{
    			ObjectMeta: metav1.ObjectMeta{Name: "myautoscaler", Namespace: metav1.NamespaceDefault},
    			Spec: autoscaling.HorizontalPodAutoscalerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. pkg/registry/autoscaling/horizontalpodautoscaler/strategy.go

    	newHPA := obj.(*autoscaling.HorizontalPodAutoscaler)
    
    	// create cannot set status
    	newHPA.Status = autoscaling.HorizontalPodAutoscalerStatus{}
    }
    
    // Validate validates a new autoscaler.
    func (autoscalerStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	autoscaler := obj.(*autoscaling.HorizontalPodAutoscaler)
    	return validation.ValidateHorizontalPodAutoscaler(autoscaler)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:51:00 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

            "x-kubernetes-group-version-kind": {
              "group": "autoscaling",
              "kind": "HorizontalPodAutoscaler",
              "version": "v1"
            }
          },
          "get": {
            "description": "list or watch objects of kind HorizontalPodAutoscaler",
            "operationId": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "format": "int32",
                "type": "integer"
              }
            },
            "type": "object"
          },
          "io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler": {
            "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/templates/autoscale.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    {{- if and $gateway.autoscaleEnabled $gateway.autoscaleMin $gateway.autoscaleMax }}
    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 951 bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    		go wait.UntilWithContext(ctx, a.worker, time.Second)
    	}
    
    	<-ctx.Done()
    }
    
    // obj could be an *v1.HorizontalPodAutoscaler, or a DeletionFinalStateUnknown marker item.
    func (a *HorizontalController) updateHPA(old, cur interface{}) {
    	a.enqueueHPA(cur)
    }
    
    // obj could be an *v1.HorizontalPodAutoscaler, or a DeletionFinalStateUnknown marker item.
    func (a *HorizontalController) enqueueHPA(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2beta1.json

                  "responseKind": {
                    "group": "",
                    "kind": "HorizontalPodAutoscaler",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "hpa"
                  ],
                  "singularResource": "horizontalpodautoscaler",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

    {{- if and .Values.pilot.autoscaleEnabled .Values.pilot.autoscaleMin .Values.pilot.autoscaleMax }}
    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top