Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for healthCheckNodePorts (0.29 sec)

  1. pkg/proxy/iptables/proxier.go

    					"--dport", strconv.Itoa(svcInfo.NodePort()),
    					"-j", externalTrafficFilterTarget,
    				)
    			}
    		}
    
    		// Capture healthCheckNodePorts.
    		if svcInfo.HealthCheckNodePort() != 0 {
    			// no matter if node has local endpoints, healthCheckNodePorts
    			// need to add a rule to accept the incoming connection
    			filterRules.Write(
    				"-A", string(kubeNodePortsChain),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	// not "OnlyLocal", but the services list will not, and the serviceHealthServer
    	// will just drop those endpoints.
    	if err := proxier.serviceHealthServer.SyncServices(proxier.svcPortMap.HealthCheckNodePorts()); err != nil {
    		proxier.logger.Error(err, "Error syncing healthcheck services")
    	}
    	if err := proxier.serviceHealthServer.SyncEndpoints(proxier.endpointsMap.LocalReadyEndpoints()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    	// not "OnlyLocal", but the services list will not, and the serviceHealthServer
    	// will just drop those endpoints.
    	if err := proxier.serviceHealthServer.SyncServices(proxier.svcPortMap.HealthCheckNodePorts()); err != nil {
    		klog.ErrorS(err, "Error syncing healthcheck services")
    	}
    	if err := proxier.serviceHealthServer.SyncEndpoints(proxier.endpointsMap.LocalReadyEndpoints()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    	// not "OnlyLocal", but the services list will not, and the serviceHealthServer
    	// will just drop those endpoints.
    	if err := proxier.serviceHealthServer.SyncServices(proxier.svcPortMap.HealthCheckNodePorts()); err != nil {
    		proxier.logger.Error(err, "Error syncing healthcheck services")
    	}
    	if err := proxier.serviceHealthServer.SyncEndpoints(proxier.endpointsMap.LocalReadyEndpoints()); err != nil {
    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