Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for QPS (0.05 sec)

  1. cmd/kube-proxy/app/server_linux_test.go

    bindAddress: 0.0.0.0
    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: /var/lib/kube-proxy/kubeconfig.conf
      qps: 5
    clusterCIDR: 10.244.0.0/16
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
    enableProfiling: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/testing/testserver.go

    	if err != nil {
    		return result, err
    	}
    
    	// from here the caller must call tearDown
    	result.ClientConfig = restclient.CopyConfig(server.GenericAPIServer.LoopbackClientConfig)
    	result.ClientConfig.QPS = 1000
    	result.ClientConfig.Burst = 10000
    	result.ServerOpts = s
    	result.TearDownFn = func() {
    		tearDown()
    		etcdClient.Close()
    	}
    	result.EtcdClient = etcdClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    		queue: workqueue.NewTypedRateLimitingQueueWithConfig(workqueue.NewTypedMaxOfRateLimiter(
    			workqueue.NewTypedItemExponentialFailureRateLimiter[string](defaultSyncBackOff, maxSyncBackOff),
    			// 10 qps, 100 bucket size. This is only for retry speed and its
    			// only the overall factor (not per item).
    			&workqueue.TypedBucketRateLimiter[string]{Limiter: rate.NewLimiter(rate.Limit(10), 100)},
    		),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller.go

    		serviceQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.NewTypedMaxOfRateLimiter(
    				workqueue.NewTypedItemExponentialFailureRateLimiter[string](defaultSyncBackOff, maxSyncBackOff),
    				// 10 qps, 100 bucket size. This is only for retry speed and its
    				// only the overall factor (not per item).
    				&workqueue.TypedBucketRateLimiter[string]{Limiter: rate.NewLimiter(rate.Limit(10), 100)},
    			),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	if hasK8SConfigStore || hasKubeRegistry(args.RegistryOptions.Registries) {
    		// Used by validation
    		kubeRestConfig, err := kubelib.DefaultRestConfig(args.RegistryOptions.KubeConfig, "", func(config *rest.Config) {
    			config.QPS = args.RegistryOptions.KubeOptions.KubernetesAPIQPS
    			config.Burst = args.RegistryOptions.KubeOptions.KubernetesAPIBurst
    		})
    		if err != nil {
    			return fmt.Errorf("failed creating kube config: %v", err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/apis/config/types.go

    	// nodeStatusMaxImages caps the number of images reported in Node.Status.Images.
    	NodeStatusMaxImages int32
    	// contentType is contentType of requests sent to apiserver.
    	ContentType string
    	// kubeAPIQPS is the QPS to use while talking with kubernetes apiserver
    	KubeAPIQPS int32
    	// kubeAPIBurst is the burst to allow while talking with kubernetes
    	// apiserver
    	KubeAPIBurst int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// MeshNetworksWatcher observes changes to the mesh networks config.
    	MeshNetworksWatcher mesh.NetworksWatcher
    
    	// MeshWatcher observes changes to the mesh config
    	MeshWatcher mesh.Watcher
    
    	// Maximum QPS when communicating with kubernetes API
    	KubernetesAPIQPS float32
    
    	// Maximum burst for throttle when communicating with the kubernetes API
    	KubernetesAPIBurst int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. 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)
  10. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

          "io.k8s.api.autoscaling.v2.ExternalMetricSource": {
            "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).",
            "properties": {
              "metric": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.MetricIdentifier"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top