Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for HTTP2MaxStreamsPerConnection (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	MinTLSVersion string
    
    	// HTTP2MaxStreamsPerConnection is the limit that the api server imposes on each client.
    	// A value of zero means to use the default provided by golang's HTTP/2 support.
    	HTTP2MaxStreamsPerConnection int
    
    	// PermitPortSharing controls if SO_REUSEPORT is used when binding the port, which allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  2. cmd/kube-scheduler/app/options/options_test.go

    				}(),
    				SecureServing: (&apiserveroptions.SecureServingOptions{
    					ServerCert: apiserveroptions.GeneratableKeyCert{
    						CertDirectory: "/a/b/c",
    						PairName:      "kube-scheduler",
    					},
    					HTTP2MaxStreamsPerConnection: 47,
    				}).WithLoopback(),
    				Authentication: &apiserveroptions.DelegatingAuthenticationOptions{
    					CacheTTL:   10 * time.Second,
    					ClientCert: apiserveroptions.ClientCertAuthenticationOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    	// use the overridden concurrent streams setting or make the default of 250 explicit so we can size MaxUploadBufferPerConnection appropriately
    	if s.HTTP2MaxStreamsPerConnection > 0 {
    		http2Options.MaxConcurrentStreams = uint32(s.HTTP2MaxStreamsPerConnection)
    	} else {
    		// match http2.initialMaxConcurrentStreams used by clients
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	// whose client is typically a proxy multiplexing many operations ---
    	// notably including long-running ones --- into one HTTP/2 connection
    	// into this server.  So allow many concurrent operations.
    	sso.HTTP2MaxStreamsPerConnection = 1000
    
    	return &RecommendedOptions{
    		Etcd:           NewEtcdOptions(storagebackend.NewDefaultConfig(prefix, codec)),
    		SecureServing:  sso.WithLoopback(),
    		Authentication: NewDelegatingAuthenticationOptions(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/options_test.go

    			BindPort:    6443,
    			ServerCert: apiserveroptions.GeneratableKeyCert{
    				CertDirectory: "/var/run/kubernetes",
    				PairName:      "apiserver",
    			},
    			HTTP2MaxStreamsPerConnection: 42,
    			Required:                     true,
    		}).WithLoopback(),
    		EventTTL: 1 * time.Hour,
    		Audit: &apiserveroptions.AuditOptions{
    			LogOptions: apiserveroptions.AuditLogOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/options_test.go

    				BindPort:    6443,
    				ServerCert: apiserveroptions.GeneratableKeyCert{
    					CertDirectory: "/var/run/kubernetes",
    					PairName:      "apiserver",
    				},
    				HTTP2MaxStreamsPerConnection: 42,
    				Required:                     true,
    			}).WithLoopback(),
    			EventTTL: 1 * time.Hour,
    			Audit: &apiserveroptions.AuditOptions{
    				LogOptions: apiserveroptions.AuditLogOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants).
    	CipherSuites []uint16
    
    	// HTTP2MaxStreamsPerConnection is the limit that the api server imposes on each client.
    	// A value of zero means to use the default provided by golang's HTTP/2 support.
    	HTTP2MaxStreamsPerConnection int
    
    	// DisableHTTP2 indicates that http2 should not be enabled.
    	DisableHTTP2 bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/options_test.go

    			BindAddress: netutils.ParseIPSloppy("192.168.4.21"),
    			ServerCert: apiserveroptions.GeneratableKeyCert{
    				CertDirectory: "/a/b/c",
    				PairName:      "kube-controller-manager",
    			},
    			HTTP2MaxStreamsPerConnection: 47,
    		}).WithLoopback(),
    		Authentication: &apiserveroptions.DelegatingAuthenticationOptions{
    			CacheTTL:            10 * time.Second,
    			TokenRequestTimeout: 10 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top