Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsImplemented (0.1 sec)

  1. pkg/proxy/nftables/proxier.go

    					Rule: knftables.Concat(
    						ipX, "daddr", svcInfo.ClusterIP(),
    						protocol, "dport", svcInfo.Port(),
    						"jump", markMasqChain,
    					),
    				})
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    			)
    			if proxier.masqueradeAll {
    				natRules.Write(
    					"-A", string(internalTrafficChain),
    					args,
    					"-j", string(kubeMarkMasqChain))
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    		)
    		if proxier.masqueradeAll {
    			proxier.natRules.Write(
    				args, "dst,dst",
    				"-j", string(kubeMarkMasqChain))
    		} else if proxier.localDetector.IsImplemented() {
    			// This masquerades off-cluster traffic to a service VIP.  The idea
    			// is that you can establish a static route for your Service range,
    			// routing to any node, and that node will bridge into the Service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top