Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tcpEstablishedTimeout (0.55 sec)

  1. pkg/proxy/apis/config/validation/validation_test.go

    		},
    		"invalid TCPEstablishedTimeout < 0": {
    			config: kubeproxyconfig.KubeProxyConntrackConfiguration{
    				MaxPerCore:            ptr.To[int32](1),
    				Min:                   ptr.To[int32](1),
    				TCPEstablishedTimeout: &metav1.Duration{Duration: -5 * time.Second},
    				TCPCloseWaitTimeout:   &metav1.Duration{Duration: 5 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_linux.go

    			s.Recorder.Eventf(s.NodeRef, nil, v1.EventTypeWarning, err.Error(), "StartKubeProxy", message)
    		}
    	}
    
    	if s.Config.Conntrack.TCPEstablishedTimeout != nil && s.Config.Conntrack.TCPEstablishedTimeout.Duration > 0 {
    		timeout := int(s.Config.Conntrack.TCPEstablishedTimeout.Duration / time.Second)
    		if err := ct.SetTCPEstablishedTimeout(ctx, timeout); err != nil {
    			return err
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_test.go

      burst: 100
      contentType: content-type
      kubeconfig: "/path/to/kubeconfig"
      qps: 7
    clusterCIDR: "%s"
    configSyncPeriod: 15s
    conntrack:
      maxPerCore: 2
      min: 1
      tcpCloseWaitTimeout: 10s
      tcpEstablishedTimeout: 20s
    healthzBindAddress: "%s"
    hostnameOverride: "foo"
    iptables:
      masqueradeAll: true
      masqueradeBit: 17
      minSyncPeriod: 10s
      syncPeriod: 60s
      localhostNodePorts: true
    ipvs:
      minSyncPeriod: 10s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server_linux_test.go

      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
    healthzBindAddress: 0.0.0.0:10256
    hostnameOverride: ""
    iptables:
      masqueradeAll: false
      masqueradeBit: 14
      minSyncPeriod: 0s
      syncPeriod: 30s
    ipvs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server.go

    		"Minimum number of conntrack entries to allocate, regardless of conntrack-max-per-core (set conntrack-max-per-core=0 to leave the limit as-is).")
    
    	fs.DurationVar(&o.config.Conntrack.TCPEstablishedTimeout.Duration, "conntrack-tcp-timeout-established", o.config.Conntrack.TCPEstablishedTimeout.Duration, "Idle timeout for established TCP connections (0 to leave as-is)")
    	fs.DurationVar(
    		&o.config.Conntrack.TCPCloseWaitTimeout.Duration, "conntrack-tcp-timeout-close-wait",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

    hostnameOverride: ${HOSTNAME_OVERRIDE}
    mode: ${KUBE_PROXY_MODE}
    conntrack:
    # Skip setting sysctl value "net.netfilter.nf_conntrack_max"
      maxPerCore: 0
    # Skip setting "net.netfilter.nf_conntrack_tcp_timeout_established"
      tcpEstablishedTimeout: 0s
    # Skip setting "net.netfilter.nf_conntrack_tcp_timeout_close"
      tcpCloseWaitTimeout: 0s
    EOF
        if [[ -n ${FEATURE_GATES} ]]; then
          parse_feature_gates "${FEATURE_GATES}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"tcpEstablishedTimeout": {
    						SchemaProps: spec.SchemaProps{
    							Description: "tcpEstablishedTimeout is how long an idle TCP connection will be kept open (e.g. '2s').  Must be greater than 0 to set.",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top