Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for nodePortAddresses (0.29 sec)

  1. pkg/proxy/nftables/proxier.go

    	recorder       events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    	// networkInterfacer defines an interface for several net library functions.
    	// Inject for test purpose.
    	networkInterfacer proxyutil.NetworkInterfacer
    
    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

    	localhostNodePorts bool
    
    	// conntrackTCPLiberal indicates whether the system sets the kernel nf_conntrack_tcp_be_liberal
    	conntrackTCPLiberal bool
    
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    	// networkInterfacer defines an interface for several net library functions.
    	// Inject for test purpose.
    	networkInterfacer proxyutil.NetworkInterfacer
    
    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

    	netlinkHandle NetLinkHandle
    	// ipsetList is the list of ipsets that ipvs proxier used.
    	ipsetList map[string]*IPSet
    	// nodePortAddresses selects the interfaces where nodePort works.
    	nodePortAddresses *proxyutil.NodePortAddresses
    	// networkInterfacer defines an interface for several net library functions.
    	// Inject for test purpose.
    	networkInterfacer     proxyutil.NetworkInterfacer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		nodeIP = netutils.ParseIPSloppy("127.0.0.1")
    	}
    
    	// windows listens to all node addresses
    	nodePortAddresses := proxyutil.NewNodePortAddresses(ipFamily, nil)
    	serviceHealthServer := healthcheck.NewServiceHealthServer(hostname, recorder, nodePortAddresses, healthzServer)
    
    	var healthzPort int
    	if len(healthzBindAddress) > 0 {
    		_, port, _ := net.SplitHostPort(healthzBindAddress)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - The kube-proxy nodeportAddresses / --nodeport-addresses option now
      accepts the value "primary", meaning to only listen for NodePort connections
      on the node's primary IPv4 and/or IPv6 address (according to the Node object).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top