Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for QPS (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/deprecated_insecure_serving.go

    	}
    
    	return &rest.Config{
    		Host: "http://" + net.JoinHostPort(host, port),
    		// Increase QPS limits. The client is currently passed to all admission plugins,
    		// and those can be throttled in case of higher load on apiserver - see #22340 and #22422
    		// for more details. Once #22422 is fixed, we may want to remove it.
    		QPS:   50,
    		Burst: 100,
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 27 15:58:45 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/options/options.go

    	}
    	if deprecated.Changed("kube-api-content-type") {
    		o.ComponentConfig.ClientConnection.ContentType = o.Deprecated.ContentType
    	}
    	if deprecated.Changed("kube-api-qps") {
    		o.ComponentConfig.ClientConnection.QPS = o.Deprecated.QPS
    	}
    	if deprecated.Changed("kube-api-burst") {
    		o.ComponentConfig.ClientConnection.Burst = o.Deprecated.Burst
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    				HealthzBindAddress: "0.0.0.0:10256",
    				MetricsBindAddress: "127.0.0.1:10249",
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					ContentType: "application/vnd.kubernetes.protobuf",
    					QPS:         5,
    					Burst:       10,
    				},
    				IPTables: kubeproxyconfigv1alpha1.KubeProxyIPTablesConfiguration{
    					MasqueradeBit:      ptr.To[int32](14),
    					MasqueradeAll:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

    apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/podautoscaler/horizontal_test.go

    		}
    
    		metrics := &emapi.ExternalMetricValueList{}
    
    		assert.Equal(t, "qps", listAction.GetResource().Resource, "the metric name requested should have been qps, as specified in the metric spec")
    
    		for _, level := range tc.reportedLevels {
    			metric := emapi.ExternalMetricValue{
    				Timestamp:  metav1.Time{Time: time.Now()},
    				MetricName: "qps",
    				Value:      *resource.NewMilliQuantity(int64(level), resource.DecimalSI),
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. pkg/envoy/proxy.go

    		// Reducing this to 1s optimizes for UX while retaining performance.
    		// At low QPS access logs are unlikely a bottleneck, and these users will now see logs after 1s rather than 10s.
    		// At high QPS (>250 QPS) we will log the same amount as we will log due to exceeding buffer size, rather
    		// than the flush interval.
    		"--file-flush-interval-msec", "1000",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/v1alpha1.yaml

    apiVersion: kubeproxy.config.k8s.io/v1alpha1
    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/v1/defaults.go

    		obj.ClientConnection.ContentType = "application/vnd.kubernetes.protobuf"
    	}
    	// Scheduler has an opinion about QPS/Burst, setting specific defaults for itself, instead of generic settings.
    	if obj.ClientConnection.QPS == 0.0 {
    		obj.ClientConnection.QPS = 50.0
    	}
    	if obj.ClientConnection.Burst == 0 {
    		obj.ClientConnection.Burst = 100
    	}
    
    	// Use the default LeaderElectionConfiguration options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/v1alpha1/defaults.go

    	}
    
    	if len(obj.ClientConnection.ContentType) == 0 {
    		obj.ClientConnection.ContentType = "application/vnd.kubernetes.protobuf"
    	}
    	if obj.ClientConnection.QPS == 0.0 {
    		obj.ClientConnection.QPS = 5.0
    	}
    	if obj.ClientConnection.Burst == 0 {
    		obj.ClientConnection.Burst = 10
    	}
    	if obj.FeatureGates == nil {
    		obj.FeatureGates = make(map[string]bool)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top