Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for QPS (0.02 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    		metric: &metricInfo{
    			name:          "qps",
    			levels:        []int64{8600},
    			targetUsage:   4400,
    			expectedUsage: 8600,
    			metricType:    podMetric,
    		},
    	}
    	tc.runTest(t)
    }
    
    func TestReplicaCalcScaleUpPerPodCMExternal(t *testing.T) {
    	tc := replicaCalcTestCase{
    		currentReplicas:  3,
    		expectedReplicas: 4,
    		metric: &metricInfo{
    			name:              "qps",
    			levels:            []int64{8600},
    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. cmd/kubelet/app/server.go

    	)
    }
    
    func kubeClientConfigOverrides(s *options.KubeletServer, clientConfig *restclient.Config) {
    	setContentTypeForClient(clientConfig, s.ContentType)
    	// Override kubeconfig qps/burst settings from flags
    	clientConfig.QPS = float32(s.KubeAPIQPS)
    	clientConfig.Burst = int(s.KubeAPIBurst)
    }
    
    // getNodeName returns the node name according to the cloud provider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    	"--horizontal-pod-autoscaler-initial-readiness-delay=50s",
    	"--http2-max-streams-per-connection=47",
    	"--kube-api-burst=100",
    	"--kube-api-content-type=application/json",
    	"--kube-api-qps=50.0",
    	"--kubeconfig=/kubeconfig",
    	"--large-cluster-size-threshold=100",
    	"--leader-elect=false",
    	"--leader-elect-lease-duration=30s",
    	"--leader-elect-renew-deadline=15s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Kubemark: adds two flags, `--kube-api-qps` and `--kube-api-burst` ([#124147](https://github.com/kubernetes/kubernetes/pull/124147), [@devincd](https://github.com/devincd)) [SIG Scalability]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // nodeNum for consistency with ReducedQPSFunc.
    func (nc *Controller) HealthyQPSFunc(nodeNum int) float32 {
    	return nc.evictionLimiterQPS
    }
    
    // ReducedQPSFunc returns the QPS for when the cluster is large make
    // evictions slower, if they're small stop evictions altogether.
    func (nc *Controller) ReducedQPSFunc(nodeNum int) float32 {
    	if int32(nodeNum) > nc.largeClusterThreshold {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top