Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dsr (0.06 sec)

  1. pkg/proxy/apis/config/types.go

    	NetworkName string
    	// sourceVip is the IP address of the source VIP endpoint used for
    	// NAT when loadbalancing
    	SourceVip string
    	// enableDSR tells kube-proxy whether HNS policies should be created
    	// with DSR
    	EnableDSR bool
    	// rootHnsEndpointName is the name of hnsendpoint that is attached to
    	// l2bridge for root network namespace
    	RootHnsEndpointName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    # It improves container image pull performance since most time is spent
    # unzipping the image layers to disk.
    export WINDOWS_ENABLE_PIGZ="${WINDOWS_ENABLE_PIGZ:-true}"
    
    # Enable Windows DSR (Direct Server Return)
    export WINDOWS_ENABLE_DSR="${WINDOWS_ENABLE_DSR:-false}"
    
    # Install Node Problem Detector (NPD) on Windows nodes.
    # NPD analyzes the host for problems that can disrupt workloads.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// owner: @cofyc
    	// alpha: v1.21
    	VolumeCapacityPriority featuregate.Feature = "VolumeCapacityPriority"
    
    	// owner: @ksubrmnn
    	// alpha: v1.14
    	//
    	// Allows kube-proxy to create DSR loadbalancers for Windows
    	WinDSR featuregate.Feature = "WinDSR"
    
    	// owner: @ksubrmnn
    	// alpha: v1.14
    	// beta: v1.20
    	//
    	// Allows kube-proxy to run in Overlay mode for Windows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                      set to "DSR", the request traffic is tunneled but the response traffic
                      is sent directly from the remote node.  In "DSR" mode, the remote
                      node appears to use the IP of the ingress node; this requires a
                      permissive L2 network.  [Default: Tunnel]'
                    pattern: ^(?i)(Tunnel|DSR)?$
                    type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      flags+=" --windows-service=true"
    
      # Enabling Windows DSR mode unlocks newer network features and reduces
      # port usage for services.
      # https://techcommunity.microsoft.com/t5/networking-blog/direct-server-return-dsr-in-a-nutshell/ba-p/693710
      if [[ "${WINDOWS_ENABLE_DSR:-}" == "true" ]]; then
        flags+=" --feature-gates=WinDSR=true --enable-dsr=true "
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		ep, ok := epInfo.(*endpointInfo)
    		if !ok {
    			continue
    		}
    		if isLocalTrafficDSR && !ep.IsLocal() {
    			// KEP-1669: Ignore remote endpoints when the ExternalTrafficPolicy is Local (DSR Mode)
    			continue
    		}
    		// If Readiness Probe fails and pod is not under delete, then
    		// the state of the endpoint will be - Ready:False, Serving:False, Terminating:False
    		if !ep.IsReady() && !ep.IsTerminating() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Format:      "",
    						},
    					},
    					"enableDSR": {
    						SchemaProps: spec.SchemaProps{
    							Description: "enableDSR tells kube-proxy whether HNS policies should be created with DSR",
    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"rootHnsEndpointName": {
    						SchemaProps: spec.SchemaProps{
    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