Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for scaleTargetRef (0.69 sec)

  1. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      // reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption
      // and will set the desired number of pods by using its Scale subresource.
      optional CrossVersionObjectReference scaleTargetRef = 1;
    
      // minReplicas is the lower limit for the number of replicas to which the autoscaler
      // can scale down.  It defaults to 1 pod.  minReplicas is allowed to be 0 if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	reference := fmt.Sprintf("%s/%s",
    		obj.Spec.ScaleTargetRef.Kind,
    		obj.Spec.ScaleTargetRef.Name)
    	minPods := "<unset>"
    	metrics := formatHPAMetrics(obj.Spec.Metrics, obj.Status.CurrentMetrics)
    	if obj.Spec.MinReplicas != nil {
    		minPods = fmt.Sprintf("%d", *obj.Spec.MinReplicas)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    			}
    		}
    		hpa := autoscalingv2.HorizontalPodAutoscaler{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      hpaName,
    				Namespace: namespace,
    			},
    			Spec: autoscalingv2.HorizontalPodAutoscalerSpec{
    				ScaleTargetRef: autoscalingv2.CrossVersionObjectReference{
    					Kind:       tc.resource.kind,
    					Name:       tc.resource.name,
    					APIVersion: tc.resource.apiVersion,
    				},
    				MinReplicas: &tc.minReplicas,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "scaleTargetRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.CrossVersionObjectReference"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "scaleTargetRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.CrossVersionObjectReference"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "specification of a horizontal pod autoscaler.",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"scaleTargetRef": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"scaleTargetRef": {
    						SchemaProps: spec.SchemaProps{
    							Description: "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            },
            "scaleTargetRef": {
              "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference",
              "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
            }
          },
          "required": [
            "scaleTargetRef",
            "maxReplicas"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            },
            "scaleTargetRef": {
              "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference",
              "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
            }
          },
          "required": [
            "scaleTargetRef",
            "maxReplicas"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

            },
            "scaleTargetRef": {
              "$ref": "#/definitions/io.k8s.api.autoscaling.v2.CrossVersionObjectReference",
              "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count."
            }
          },
          "required": [
            "scaleTargetRef",
            "maxReplicas"
          ],
    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