Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for metricsTarget (0.77 sec)

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

    }
    
    func (MetricStatus) SwaggerDoc() map[string]string {
    	return map_MetricStatus
    }
    
    var map_MetricTarget = map[string]string{
    	"":                   "MetricTarget defines the target value, average value, or average utilization of a specific metric",
    	"type":               "type represents whether the metric type is Utilization, Value, or AverageValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/validation/validation.go

    	}
    
    	return allErrs
    }
    
    func validateMetricTarget(mt autoscaling.MetricTarget, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if len(mt.Type) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("type"), "must specify a metric target type"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          },
          "io.k8s.api.autoscaling.v2.MetricTarget": {
            "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
            "properties": {
              "averageUtilization": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    }
    
    func (a *HorizontalController) computeStatusForResourceMetricGeneric(ctx context.Context, currentReplicas int32, target autoscalingv2.MetricTarget,
    	resourceName v1.ResourceName, namespace string, container string, selector labels.Selector, sourceType autoscalingv2.MetricSourceType) (replicaCountProposal int32,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/api/autoscaling/v2.MetricTarget"),
    						},
    					},
    				},
    				Required: []string{"metric", "target"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/autoscaling/v2.MetricIdentifier", "k8s.io/api/autoscaling/v2.MetricTarget"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.MetricTarget": {
          "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
          "properties": {
            "averageUtilization": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.MetricTarget": {
          "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
          "properties": {
            "averageUtilization": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        },
        "io.k8s.api.autoscaling.v2.MetricTarget": {
          "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric",
          "properties": {
            "averageUtilization": {
    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