Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. operator/pkg/helmreconciler/wait.go

    		}
    	}
    
    	resourceDebugInfo := map[string]string{}
    	dr, dnr := deploymentsReady(cs, deployments, resourceDebugInfo)
    	dsr, dsnr := daemonsetsReady(daemonsets)
    	stsr, stsnr := statefulsetsReady(statefulsets)
    	nsr, nnr := namespacesReady(namespaces)
    	pr, pnr := podsReady(pods)
    	isReady := dr && nsr && dsr && stsr && pr
    	notReady := append(append(append(append(nnr, dnr...), pnr...), dsnr...), stsnr...)
    	if !isReady {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      request and response traffic is tunneled to the remote node.  If
                      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]'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  3. 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)
  4. cluster/gce/config-default.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: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. 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)
  6. pkg/proxy/winkernel/proxier_test.go

    	} else {
    		if svcInfo.hnsID != loadbalancerGuid1 {
    			t.Errorf("%v does not match %v", svcInfo.hnsID, loadbalancerGuid1)
    		}
    		if svcInfo.localTrafficDSR != true {
    			t.Errorf("Failed to create DSR loadbalancer with local traffic policy")
    		}
    		if len(svcInfo.loadBalancerIngressIPs) == 0 {
    			t.Errorf("svcInfo does not have any loadBalancerIngressIPs, %+v", svcInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. 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)
Back to top