Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 322 for bursty (0.22 sec)

  1. 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)
  2. pkg/util/async/bounded_frequency_runner_test.go

    	timer.advance(1 * time.Millisecond) // abs=501ms, rel=500ms
    	runner.Run()
    	waitForDefer("too soon after second 3", t, timer, obj, 500*time.Millisecond)
    
    	// Advance timer enough to replenish bursts, but not enough to be minInterval
    	// after the last run
    	timer.advance(499 * time.Millisecond) // abs=1000ms, rel=999ms
    	waitForNothing("not minInterval", t, timer, obj)
    	runner.Run()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/kube/factory.go

    		config.QPS = 200
    		config.Burst = 400
    	})
    	if err != nil {
    		return nil, err
    	}
    	return istioKube.NewCLIClient(istioKube.NewClientConfigForRestConfig(rc))
    }
    
    func buildClientWithProxy(kubeconfig string, proxyURL *url.URL) (istioKube.CLIClient, error) {
    	rc, err := istioKube.DefaultRestConfig(kubeconfig, "", func(config *rest.Config) {
    		config.QPS = 200
    		config.Burst = 400
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/deprecated.go

    	fs.Float32Var(&o.QPS, "kube-api-qps", 50.0, "DEPRECATED: QPS to use while talking with kubernetes apiserver. This parameter is ignored if a config file is specified in --config.")
    	fs.Int32Var(&o.Burst, "kube-api-burst", 100, "DEPRECATED: burst to use while talking with kubernetes apiserver. This parameter is ignored if a config file is specified in --config.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    				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,
    					LocalhostNodePorts: ptr.To(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. samples/httpbin/README.md

    image from Docker hub:
    
    ```bash
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/html
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent --head httpbin:8000/status/500
    time kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/delay/5
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/options/options.go

    	}
    	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
    	}
    }
    
    // ApplyLeaderElectionTo obtains the CLI args related with leaderelection, and override the values in `cfg`.
    // Then the `cfg` object is injected into the `options` object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/controller/apis/config/v1alpha1/defaults.go

    	// These client-connection defaults are specific to the kube-controller-manager
    	if obj.Generic.ClientConnection.QPS == 0.0 {
    		obj.Generic.ClientConnection.QPS = 20.0
    	}
    	if obj.Generic.ClientConnection.Burst == 0 {
    		obj.Generic.ClientConnection.Burst = 30
    	}
    
    	// Use the default RecommendedDefaultGenericControllerManagerConfiguration options
    	cmconfigv1alpha1.RecommendedDefaultGenericControllerManagerConfiguration(&obj.Generic)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 07:55:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-kubeapiserver.sh

            params+=" --audit-log-batch-throttle-qps=${ADVANCED_AUDIT_LOG_THROTTLE_QPS}"
          fi
          if [[ -n "${ADVANCED_AUDIT_LOG_THROTTLE_BURST:-}" ]]; then
            params+=" --audit-log-batch-throttle-burst=${ADVANCED_AUDIT_LOG_THROTTLE_BURST}"
          fi
          if [[ -n "${ADVANCED_AUDIT_LOG_INITIAL_BACKOFF:-}" ]]; then
            params+=" --audit-log-initial-backoff=${ADVANCED_AUDIT_LOG_INITIAL_BACKOFF}"
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. 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)
Back to top