Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for targetCPUUtilizationPercentage (0.37 sec)

  1. pkg/apis/autoscaling/v1/conversion_test.go

    					MaxReplicas:                    4,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(60),
    				},
    				expectOut: &autoscalingv1.HorizontalPodAutoscalerSpec{
    					MinReplicas:                    utilpointer.Int32(1),
    					MaxReplicas:                    3,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(70),
    				},
    				s: nil,
    			},
    			false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. manifests/charts/gateway/templates/hpa.yaml

      maxReplicas: {{ .Values.autoscaling.maxReplicas }}
      metrics:
        {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
        - type: Resource
          resource:
            name: cpu
            target:
              averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }}
              type: Utilization
        {{- end }}
        {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 05:44:12 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. manifests/charts/gateway/values.schema.json

                },
                "maxReplicas": {
                  "type": "integer"
                },
                "minReplicas": {
                  "type": "integer"
                },
                "targetCPUUtilizationPercentage": {
                  "type": "integer"
                }
              }
            },
            "env": {
              "type": "object"
            },
            "labels": {
              "type": "object"
            },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. pkg/kubectl/cmd/convert/convert_test.go

    			outputVersion: "autoscaling/v1",
    			fields: []checkField{
    				{
    					expected: "apiVersion: autoscaling/v1",
    				},
    				{
    					expected: "targetCPUUtilizationPercentage: 50",
    				},
    			},
    		},
    		{
    			name:          "v1beta1 Ingress to extensions Ingress",
    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/v1beta1ingress.yaml",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top