Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DISABLE_HTTP2 (0.53 sec)

  1. cmd/kubelet/app/server.go

    		// control, users can still opt-in to the previous behavior for closing the connections by
    		// setting the environment variable DISABLE_HTTP2.
    		if s := os.Getenv("DISABLE_HTTP2"); len(s) > 0 {
    			klog.InfoS("HTTP2 has been explicitly disabled, Kubelet will forcefully close active connections on heartbeat failures")
    			onHeartbeatFailure = closeAllConns
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    // for the Proxy, Dial, and TLSHandshakeTimeout fields if unset
    func SetTransportDefaults(t *http.Transport) *http.Transport {
    	t = SetOldTransportDefaults(t)
    	// Allow clients to disable http2 if needed.
    	if s := os.Getenv("DISABLE_HTTP2"); len(s) > 0 {
    		klog.Info("HTTP2 has been explicitly disabled")
    	} else if allowsHTTP2(t) {
    		if err := configureHTTP2Transport(t); err != nil {
    			klog.Warningf("Transport failed http2 configuration: %v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.23.md

      If users experiment problems with stale connections  using HTTP1.1, they can force the previous behavior of the kubelet by setting the environment variable DISABLE_HTTP2. ([#104844](https://github.com/kubernetes/kubernetes/pull/104844), [@aojea](https://github.com/aojea)) [SIG API Machinery, Auth and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.24.md

    - The kubelet no longer forcefully closes active connections on heartbeat failures, using the HTTP2 health check mechanism to detect broken connections. Users can force the previous behavior of the kubelet by setting the environment variable DISABLE_HTTP2. ([#108107](https://github.com/kubernetes/kubernetes/pull/108107), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top