Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 115 for qps (0.07 sec)

  1. operator/cmd/mesh/manifest_shared_test.go

    	}
    
    	var err error
    	testenv = &envtest.Environment{}
    	testRestConfig, err := testenv.Start()
    	if err != nil {
    		return err
    	}
    
    	_, err = kubernetes.NewForConfig(testRestConfig)
    	testRestConfig.QPS = 50
    	testRestConfig.Burst = 100
    	if err != nil {
    		return err
    	}
    
    	s := scheme.Scheme
    	s.AddKnownTypes(v1alpha1.SchemeGroupVersion, &v1alpha1.IstioOperator{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    }
    
    func (s *singleBenchmark) run(b *testing.B) {
    	b.Run(fmt.Sprintf("tokens=%d threads=%d", s.tokenCount, s.threadCount), s.bench)
    }
    
    func (s *singleBenchmark) bench(b *testing.B) {
    	// Simulate slowness, qps limit, external service limitation, etc
    	const maxInFlight = 40
    	chokepoint := make(chan struct{}, maxInFlight)
    	// lookup count
    	var lookups uint64
    
    	a := newWithClock(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top