Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for stabilizationWindowSeconds (0.52 sec)

  1. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	behavior := hpa.Spec.Behavior
    	if behavior != nil && behavior.ScaleDown != nil && behavior.ScaleDown.StabilizationWindowSeconds == nil {
    		stabilizationWindowSeconds := (int32)(a.downscaleStabilisationWindow.Seconds())
    		hpa.Spec.Behavior.ScaleDown.StabilizationWindowSeconds = &stabilizationWindowSeconds
    	}
    }
    
    // getReplicasChangePerPeriod function find all the replica changes per period
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    }
    
    func (m *HPAScalingRules) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.StabilizationWindowSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.StabilizationWindowSeconds))
    		i--
    		dAtA[i] = 0x18
    	}
    	if len(m.Policies) > 0 {
    		for iNdEx := len(m.Policies) - 1; iNdEx >= 0; iNdEx-- {
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta2/generated.pb.go

    }
    
    func (m *HPAScalingRules) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.StabilizationWindowSeconds != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.StabilizationWindowSeconds))
    		i--
    		dAtA[i] = 0x18
    	}
    	if len(m.Policies) > 0 {
    		for iNdEx := len(m.Policies) - 1; iNdEx >= 0; iNdEx-- {
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 163K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal_test.go

    				CurrentReplicas: tc.currentReplicas,
    				ScaleUpBehavior: &autoscalingv2.HPAScalingRules{
    					StabilizationWindowSeconds: &tc.scaleUpStabilizationWindowSeconds,
    				},
    				ScaleDownBehavior: &autoscalingv2.HPAScalingRules{
    					StabilizationWindowSeconds: &tc.scaleDownStabilizationWindowSeconds,
    				},
    			}
    			r, _, _ := hc.stabilizeRecommendationWithBehaviors(arg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "type": "string"
              },
              "stabilizationWindowSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"stabilizationWindowSeconds": {
    						SchemaProps: spec.SchemaProps{
    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

              "type": "string"
            },
            "stabilizationWindowSeconds": {
    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

              "type": "string"
            },
            "stabilizationWindowSeconds": {
    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

              "type": "string"
            },
            "stabilizationWindowSeconds": {
    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