Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for targetCPUUtilizationPercentage (0.37 sec)

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

    		if metric.Type == autoscaling.ResourceMetricSourceType && metric.Resource != nil && metric.Resource.Name == core.ResourceCPU && metric.Resource.Target.AverageUtilization != nil {
    			out.TargetCPUUtilizationPercentage = new(int32)
    			*out.TargetCPUUtilizationPercentage = *metric.Resource.Target.AverageUtilization
    			break
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 16 03:29:22 UTC 2021
    - 21.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/autoscaling/v1/zz_generated.conversion.go

    		return err
    	}
    	out.MinReplicas = (*int32)(unsafe.Pointer(in.MinReplicas))
    	out.MaxReplicas = in.MaxReplicas
    	// WARNING: in.TargetCPUUtilizationPercentage requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 43.7K bytes
    - Viewed (0)
Back to top