Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for targetCPUUtilizationPercentage (0.4 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/autoscaling/v1/zz_generated.deepcopy.go

    	if in.MinReplicas != nil {
    		in, out := &in.MinReplicas, &out.MinReplicas
    		*out = new(int32)
    		**out = **in
    	}
    	if in.TargetCPUUtilizationPercentage != nil {
    		in, out := &in.TargetCPUUtilizationPercentage, &out.TargetCPUUtilizationPercentage
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 16.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"maxReplicas":                    "maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.",
    	"targetCPUUtilizationPercentage": "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: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/generated.proto

      optional int32 maxReplicas = 3;
    
      // 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
      optional int32 targetCPUUtilizationPercentage = 4;
    }
    
    // current status of a horizontal pod autoscaler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      optional int32 maxReplicas = 3;
    
      // 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
      optional int32 targetCPUUtilizationPercentage = 4;
    }
    
    // current status of a horizontal pod autoscaler
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

         * <code>apiVersion: autoscaling/v1 </code>is now available.  Changes in this version are:
            * Field CPUUtilization which was a nested structure CPUTargetUtilization in
    HorizontalPodAutoscalerSpec was replaced by TargetCPUUtilizationPercentage
    which is an integer.
            * ScaleRef of type SubresourceReference in HorizontalPodAutoscalerSpec which
    referred to scale subresource of the resource being scaled was replaced by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v1/generated.pb.go

    }
    
    func (m *HorizontalPodAutoscalerSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.TargetCPUUtilizationPercentage != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.TargetCPUUtilizationPercentage))
    		i--
    		dAtA[i] = 0x20
    	}
    	i = encodeVarintGenerated(dAtA, i, uint64(m.MaxReplicas))
    	i--
    	dAtA[i] = 0x18
    	if m.MinReplicas != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top