Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for newController (0.33 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller.go

    	podsClient kclient.Client[*v1.Pod]
    
    	configCluster bool
    
    	networksHandlerRegistration *mesh.WatcherHandlerRegistration
    }
    
    // NewController creates a new Kubernetes controller
    // Created by bootstrap and multicluster (see multicluster.Controller).
    func NewController(kubeClient kubelib.Client, options Options) *Controller {
    	c := &Controller{
    		opts:                     options,
    		client:                   kubeClient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	e := model.NewEnvironment()
    	e.DomainSuffix = args.RegistryOptions.KubeOptions.DomainSuffix
    	e.SetLedger(buildLedger(args.RegistryOptions))
    
    	ac := aggregate.NewController(aggregate.Options{
    		MeshHolder: e,
    	})
    	e.ServiceDiscovery = ac
    
    	s := &Server{
    		clusterID:               getClusterID(args),
    		environment:             e,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/framework_test.go

    		PodInformer:               informerFactory.Core().V1().Pods(),
    		NodeInformer:              informerFactory.Core().V1().Nodes(),
    		EnableDynamicProvisioning: enableDynamicProvisioning,
    	}
    	ctrl, err := NewController(ctx, params)
    	if err != nil {
    		return nil, fmt.Errorf("failed to construct persistentvolume controller: %v", err)
    	}
    	ctrl.eventRecorder = record.NewFakeRecorder(1000)
    	ctrl.volumeListerSynced = alwaysReady
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top