Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for unscaling (0.28 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. test/fixedbugs/issue17005.go

    	Identity  Flag = iota - 2 // H is the identity matrix; no rotation is needed.
    	Rescaling                 // H specifies rescaling.
    )
    
    type DrotmParams struct {
    	Flag
    }
    
    func Drotmg(d1, d2, x1, y1 float64) (p DrotmParams, rd1, rd2, rx1 float64) {
    
    	const (
    		gam    = 4.0
    		gamsq  = 16.0
    		rgamsq = 5e-8
    	)
    
    	if d1 < 0 {
    		p.Flag = Rescaling
    		return
    	}
    
    	for rd1 <= rgamsq || rd1 >= gamsq {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:30:34 UTC 2016
    - 798 bytes
    - Viewed (0)
  4. cluster/addons/README.md

    More details could be found in [addon-manager/README.md](addon-manager/README.md).
    
    ## Cooperating Horizontal / Vertical Auto-Scaling with "reconcile class addons"
    
    "Reconcile" class addons will be periodically reconciled to the original state given
    by the initial config. In order to make Horizontal / Vertical Auto-scaling functional,
    the related fields in config should be left unset. More specifically, leave `replicas`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top