Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for targetCPUUtilizationPercentage (0.54 sec)

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

        ]
      },
      "spec": {
        "scaleTargetRef": {
          "kind": "kindValue",
          "name": "nameValue",
          "apiVersion": "apiVersionValue"
        },
        "minReplicas": 2,
        "maxReplicas": 3,
        "targetCPUUtilizationPercentage": 4
      },
      "status": {
        "observedGeneration": 1,
        "lastScaleTime": "2002-01-01T01:01:01Z",
        "currentReplicas": 3,
        "desiredReplicas": 4,
        "currentCPUUtilizationPercentage": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v1.HorizontalPodAutoscaler.yaml

      selfLink: selfLinkValue
      uid: uidValue
    spec:
      maxReplicas: 3
      minReplicas: 2
      scaleTargetRef:
        apiVersion: apiVersionValue
        kind: kindValue
        name: nameValue
      targetCPUUtilizationPercentage: 4
    status:
      currentCPUUtilizationPercentage: 5
      currentReplicas: 3
      desiredReplicas: 4
      lastScaleTime: "2002-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. manifests/charts/gateway/values.yaml

        requests:
          cpu: 100m
          memory: 128Mi
        limits:
          cpu: 2000m
          memory: 1024Mi
    
      autoscaling:
        enabled: true
        minReplicas: 1
        maxReplicas: 5
        targetCPUUtilizationPercentage: 80
        targetMemoryUtilizationPercentage: {}
        autoscaleBehavior: {}
    
      # Pod environment variables
      env: {}
    
      # Labels to apply to all resources
      labels: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods;
    	// if not specified the default autoscaling policy will be used.
    	// +optional
    	TargetCPUUtilizationPercentage *int32 `json:"targetCPUUtilizationPercentage,omitempty" protobuf:"varint,4,opt,name=targetCPUUtilizationPercentage"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"targetCPUUtilizationPercentage": {
    						SchemaProps: spec.SchemaProps{
    							Description: "targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

            },
            "targetCPUUtilizationPercentage": {
              "description": "targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.",
    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