Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for stabilizationWindowSeconds (0.35 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.json

        ],
        "behavior": {
          "scaleUp": {
            "stabilizationWindowSeconds": 3,
            "selectPolicy": "selectPolicyValue",
            "policies": [
              {
                "type": "typeValue",
                "value": 2,
                "periodSeconds": 3
              }
            ]
          },
          "scaleDown": {
            "stabilizationWindowSeconds": 3,
            "selectPolicy": "selectPolicyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json

        ],
        "behavior": {
          "scaleUp": {
            "stabilizationWindowSeconds": 3,
            "selectPolicy": "selectPolicyValue",
            "policies": [
              {
                "type": "typeValue",
                "value": 2,
                "periodSeconds": 3
              }
            ]
          },
          "scaleDown": {
            "stabilizationWindowSeconds": 3,
            "selectPolicy": "selectPolicyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml

          - periodSeconds: 3
            type: typeValue
            value: 2
          selectPolicy: selectPolicyValue
          stabilizationWindowSeconds: 3
        scaleUp:
          policies:
          - periodSeconds: 3
            type: typeValue
            value: 2
          selectPolicy: selectPolicyValue
          stabilizationWindowSeconds: 3
      maxReplicas: 3
      metrics:
      - containerResource:
          container: containerValue
          name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.yaml

          - periodSeconds: 3
            type: typeValue
            value: 2
          selectPolicy: selectPolicyValue
          stabilizationWindowSeconds: 3
        scaleUp:
          policies:
          - periodSeconds: 3
            type: typeValue
            value: 2
          selectPolicy: selectPolicyValue
          stabilizationWindowSeconds: 3
      maxReplicas: 3
      metrics:
      - containerResource:
          container: containerValue
          name: nameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/validation/validation.go

    	allErrs := field.ErrorList{}
    	if rules != nil {
    		if rules.StabilizationWindowSeconds != nil && *rules.StabilizationWindowSeconds < 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("stabilizationWindowSeconds"), rules.StabilizationWindowSeconds, "must be greater than or equal to zero"))
    		}
    		if rules.StabilizationWindowSeconds != nil && *rules.StabilizationWindowSeconds > MaxStabilizationWindowSeconds {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/validation/validation_test.go

    		ScaleUp:   nil,
    		ScaleDown: nil,
    	}, {
    		ScaleUp: &autoscaling.HPAScalingRules{
    			StabilizationWindowSeconds: utilpointer.Int32(3600),
    			SelectPolicy:               &minPolicy,
    			Policies:                   simplePoliciesList,
    		},
    		ScaleDown: &autoscaling.HPAScalingRules{
    			StabilizationWindowSeconds: utilpointer.Int32(0),
    			SelectPolicy:               &disabledPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// - For scale down: 300 (i.e. the stabilization window is 300 seconds long).
    	// +optional
    	StabilizationWindowSeconds *int32 `json:"stabilizationWindowSeconds,omitempty" protobuf:"varint,3,opt,name=stabilizationWindowSeconds"`
    
    	// selectPolicy is used to specify which policy should be used.
    	// If not set, the default value Max is used.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
      // stabilizationWindowSeconds is the number of seconds for which past recommendations should be
      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/generated.proto

    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
      // stabilizationWindowSeconds is the number of seconds for which past recommendations should be
      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
      // stabilizationWindowSeconds is the number of seconds for which past recommendations should be
      // considered while scaling up or scaling down.
      // StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour).
      // If not set, use the default values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top