Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for newlyActiveUDPServices (0.39 sec)

  1. pkg/proxy/endpointschangetracker.go

    	DeletedUDPEndpoints []ServiceEndpoint
    
    	// NewlyActiveUDPServices identifies UDP Services that have just gone from 0 to
    	// non-0 endpoints. Existing conntrack entries caching the fact that these
    	// services are black holes must be deleted to ensure that traffic can immediately
    	// begin flowing to the new endpoints.
    	NewlyActiveUDPServices []ServicePortName
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. pkg/proxy/conntrack/cleanup_test.go

    				},
    			},
    		},
    		{
    			description: "NewlyActiveUDPServices clears entries for all IPs and NodePorts",
    
    			serviceUpdates: proxy.UpdateServiceMapResult{
    				DeletedUDPClusterIPs: sets.New[string](),
    			},
    			endpointsUpdates: proxy.UpdateEndpointsMapResult{
    				DeletedUDPEndpoints: []proxy.ServiceEndpoint{},
    				NewlyActiveUDPServices: []proxy.ServicePortName{
    					udpPortName,
    				},
    			},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pkg/proxy/conntrack/cleanup.go

    	isIPv6 := false
    
    	// merge newly active services gathered from endpointsUpdateResult
    	// a UDP service that changes from 0 to non-0 endpoints is newly active.
    	for _, svcPortName := range endpointsUpdateResult.NewlyActiveUDPServices {
    		if svcInfo, ok := svcPortMap[svcPortName]; ok {
    			klog.V(4).InfoS("Newly-active UDP service may have stale conntrack entries", "servicePortName", svcPortName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/proxy/endpointschangetracker_test.go

    				}
    			}
    			if len(result.NewlyActiveUDPServices) != len(tc.expectedNewlyActiveUDPServices) {
    				t.Errorf("[%d] expected %d newlyActiveUDPServices, got %d: %v", tci, len(tc.expectedNewlyActiveUDPServices), len(result.NewlyActiveUDPServices), result.NewlyActiveUDPServices)
    			}
    			for svcName := range tc.expectedNewlyActiveUDPServices {
    				found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    				}
    			}
    			if len(result.NewlyActiveUDPServices) != len(tc.expectedNewlyActiveUDPServices) {
    				t.Errorf("[%d] expected %d staleServiceNames, got %d: %v", tci, len(tc.expectedNewlyActiveUDPServices), len(result.NewlyActiveUDPServices), result.NewlyActiveUDPServices)
    			}
    			for svcName := range tc.expectedNewlyActiveUDPServices {
    				found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    				}
    			}
    			if len(result.NewlyActiveUDPServices) != len(tc.expectedNewlyActiveUDPServices) {
    				t.Errorf("[%d] expected %d staleServiceNames, got %d: %v", tci, len(tc.expectedNewlyActiveUDPServices), len(result.NewlyActiveUDPServices), result.NewlyActiveUDPServices)
    			}
    			for svcName := range tc.expectedNewlyActiveUDPServices {
    				found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier_test.go

    				}
    			}
    			if len(result.NewlyActiveUDPServices) != len(tc.expectedNewlyActiveUDPServices) {
    				t.Errorf("[%d] expected %d staleServiceNames, got %d: %v", tci, len(tc.expectedNewlyActiveUDPServices), len(result.NewlyActiveUDPServices), result.NewlyActiveUDPServices)
    			}
    			for svcName := range tc.expectedNewlyActiveUDPServices {
    				found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  8. pkg/proxy/winkernel/proxier.go

    	deletedUDPClusterIPs := serviceUpdateResult.DeletedUDPClusterIPs
    	// merge stale services gathered from EndpointsMap.Update
    	for _, svcPortName := range endpointUpdateResult.NewlyActiveUDPServices {
    		if svcInfo, ok := proxier.svcPortMap[svcPortName]; ok && svcInfo != nil && svcInfo.Protocol() == v1.ProtocolUDP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top