Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for dsr (0.02 sec)

  1. cmd/kube-proxy/app/init_windows.go

    	fs.StringVar(&o.config.Winkernel.NetworkName, "network-name", o.config.Winkernel.NetworkName, "The name of the cluster network.")
    	fs.BoolVar(&o.config.Winkernel.EnableDSR, "enable-dsr", o.config.Winkernel.EnableDSR, "If true make kube-proxy apply DSR policies for service VIP")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/testing/hcnutils_mock.go

    		return nil
    	}
    	return errors.New("IPV6 DualStack Not Supported")
    }
    
    func (hcnObj HcnMock) DsrSupported() error {
    	if hcnObj.supportedFeatures.DSR {
    		return nil
    	}
    	return errors.New("DSR Not Supported")
    }
    
    func (hcnObj HcnMock) DeleteAllHnsLoadBalancerPolicy() {
    	for k := range loadbalancerMap {
    		delete(loadbalancerMap, k)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. 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)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/basic",
    				"audio/bv16",
    				"audio/bv32",
    				"audio/clearmode",
    				"audio/cn",
    				"audio/dat12",
    				"audio/dls",
    				"audio/dsr-es201108",
    				"audio/dsr-es202050",
    				"audio/dsr-es202211",
    				"audio/dsr-es202212",
    				"audio/dvi4",
    				"audio/eac3",
    				"audio/evrc",
    				"audio/evrc-qcp",
    				"audio/evrc0",
    				"audio/evrc1",
    				"audio/evrcb",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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