Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for endpointsstore (0.13 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceMirroringController struct {
    	*Controller
    	endpointsStore     cache.Store
    	endpointSliceStore cache.Store
    	serviceStore       cache.Store
    }
    
    func newController(ctx context.Context, batchPeriod time.Duration) (*fake.Clientset, *endpointSliceMirroringController) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. pkg/registry/core/rest/storage_core.go

    	}
    	persistentVolumeClaimStorage, persistentVolumeClaimStatusStorage, err := pvcstore.NewREST(restOptionsGetter)
    	if err != nil {
    		return genericapiserver.APIGroupInfo{}, err
    	}
    
    	endpointsStorage, err := endpointsstore.NewREST(restOptionsGetter)
    	if err != nil {
    		return genericapiserver.APIGroupInfo{}, err
    	}
    
    	nodeStorage, err := nodestore.NewStorage(restOptionsGetter, p.Proxy.KubeletClientConfig, p.Proxy.Transport)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage.go

    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    type EndpointsStorage interface {
    	rest.Getter
    	rest.GracefulDeleter
    }
    
    type PodStorage interface {
    	rest.Getter
    }
    
    type REST struct {
    	*genericregistry.Store
    	primaryIPFamily   api.IPFamily
    	secondaryIPFamily api.IPFamily
    	alloc             Allocators
    	endpoints         EndpointsStorage
    	pods              PodStorage
    	proxyTransport    http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top