Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for PodsMetricSource (0.43 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta1/types_swagger_doc_generated.go

    }
    
    func (ObjectMetricStatus) SwaggerDoc() map[string]string {
    	return map_ObjectMetricStatus
    }
    
    var map_PodsMetricSource = map[string]string{
    	"":                   "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/types.go

    }
    
    // PodsMetricSource indicates how to scale on a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    // The values will be averaged together before being compared to the target
    // value.
    type PodsMetricSource struct {
    	// metricName is the name of the metric in question
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    }
    
    func (ObjectMetricStatus) SwaggerDoc() map[string]string {
    	return map_ObjectMetricStatus
    }
    
    var map_PodsMetricSource = map[string]string{
    	"":                   "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/types.go

    	Target          MetricTarget
    	Metric          MetricIdentifier
    }
    
    // PodsMetricSource indicates how to scale on a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    // The values will be averaged together before being compared to the target
    // value.
    type PodsMetricSource struct {
    	// metric identifies the target metric by name and selector
    	Metric MetricIdentifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    }
    
    func (ObjectMetricStatus) SwaggerDoc() map[string]string {
    	return map_ObjectMetricStatus
    }
    
    var map_PodsMetricSource = map[string]string{
    	"":       "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/types.go

    	Metric MetricIdentifier `json:"metric" protobuf:"bytes,3,name=metric"`
    }
    
    // PodsMetricSource indicates how to scale on a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    // The values will be averaged together before being compared to the target
    // value.
    type PodsMetricSource struct {
    	// metric identifies the target metric by name and selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	Metric MetricIdentifier `json:"metric" protobuf:"bytes,3,name=metric"`
    }
    
    // PodsMetricSource indicates how to scale on a metric describing each pod in
    // the current scale target (for example, transactions-processed-per-second).
    // The values will be averaged together before being compared to the target
    // value.
    type PodsMetricSource struct {
    	// metric identifies the target metric by name and selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    }
    
    func (ObjectMetricStatus) SwaggerDoc() map[string]string {
    	return map_ObjectMetricStatus
    }
    
    var map_PodsMetricSource = map[string]string{
    	"":       "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    		expectedDesiredReplicas: 4,
    		CPUTarget:               0,
    		metricsTarget: []autoscalingv2.MetricSpec{
    			{
    				Type: autoscalingv2.PodsMetricSourceType,
    				Pods: &autoscalingv2.PodsMetricSource{
    					Metric: autoscalingv2.MetricIdentifier{
    						Name: "qps",
    					},
    					Target: autoscalingv2.MetricTarget{
    						Type:         autoscalingv2.AverageValueMetricType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. pkg/apis/autoscaling/validation/validation.go

    	}
    
    	return allErrs
    }
    
    func validatePodsSource(src *autoscaling.PodsMetricSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	allErrs = append(allErrs, validateMetricIdentifier(src.Metric, fldPath.Child("metric"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top