Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 153 for unscaling (0.23 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    			expectedValue:       numContainersPerPod * totalUsedCPUOfAllPods / 10,
    		},
    	}
    
    	tc.runTest(t)
    
    	// Reuse the data structure above, now testing "unscaling".
    	// Now, we test that no scaling happens if we are in a very close margin to the tolerance
    	target = math.Abs(1/(requestedToUsed*(1-defaultTestingTolerance))) + .004
    	finalCPUPercentTarget = int32(target * 100)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  2. releasenotes/notes/helm-configurable-scaling-behavior.yaml

    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 42634
    
    docs:
      - '[usage] https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior'
    
    releaseNotes:
    - |
      **Added** configurable scaling behavior for Istiod's HPA in helm chart 
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 20 17:08:18 UTC 2023
    - 394 bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      optional int32 periodSeconds = 3;
    }
    
    // HPAScalingRules configures the scaling behavior for one direction.
    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    	"scaleUp":   "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n  * increase no more than 4 pods per 60 seconds\n  * double the number of pods per 60 seconds\nNo stabilization is used.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/types.go

    type HorizontalPodAutoscalerBehavior struct {
    	// scaleUp is scaling policy for scaling Up.
    	// If not set, the default value is the higher of:
    	//   * increase no more than 4 pods per 60 seconds
    	//   * double the number of pods per 60 seconds
    	// No stabilization is used.
    	// +optional
    	ScaleUp *HPAScalingRules
    	// scaleDown is scaling policy for scaling Down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/scaler-deployment.yaml

            command:
              - /scaler.sh
              - --ds-name=fluentd-gcp-{{ fluentd_gcp_yaml_version }}
              - --scaling-policy=fluentd-gcp-scaling-policy
            env:
            # Defaults, used if no overrides are found in fluentd-gcp-scaling-policy
            - name: CPU_REQUEST
              value: 10m
            - name: MEMORY_REQUEST
              value: 200Mi
            - name: CPU_LIMIT
              value: "1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// DisabledPolicySelect disables the scaling in this direction.
    	DisabledPolicySelect ScalingPolicySelect = "Disabled"
    )
    
    // HPAScalingRules configures the scaling behavior for one direction.
    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    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

      optional int32 periodSeconds = 3;
    }
    
    // HPAScalingRules configures the scaling behavior for one direction.
    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    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

      optional int32 periodSeconds = 3;
    }
    
    // HPAScalingRules configures the scaling behavior for one direction.
    // These Rules are applied after calculating DesiredReplicas from metrics for the HPA.
    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    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/v2/types_swagger_doc_generated.go

    	"scaleUp":   "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n  * increase no more than 4 pods per 60 seconds\n  * double the number of pods per 60 seconds\nNo stabilization is used.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top