Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dropEndpointSlicesPendingDeletion (0.43 sec)

  1. pkg/controller/endpointslice/endpointslice_controller.go

    		return err
    	}
    
    	// Drop EndpointSlices that have been marked for deletion to prevent the controller from getting stuck.
    	endpointSlices = dropEndpointSlicesPendingDeletion(endpointSlices)
    
    	if c.endpointSliceTracker.StaleSlices(service, endpointSlices) {
    		return endpointslicepkg.NewStaleInformerCache("EndpointSlice informer cache is out of date")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    				{
    					Addresses: []string{"3001:0da8:75a3:0000:0000:8a2e:0370:7334"},
    				},
    			},
    		},
    	}
    
    	epSlice2 := endpointSlices[1]
    	epSlice3 := endpointSlices[2]
    
    	result := dropEndpointSlicesPendingDeletion(endpointSlices)
    
    	assert.Len(t, result, 2)
    	for _, epSlice := range result {
    		if epSlice.Name == "epSlice1" {
    			t.Errorf("Expected EndpointSlice marked for deletion to be dropped.")
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top