Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 538 for controller3 (0.29 sec)

  1. cmd/endpoint-ellipses_test.go

    			true,
    		},
    		{
    			[]string{"data/controller{1...11}/export{1...8}"},
    			[]uint64{88},
    			[][]uint64{{11, 11, 11, 11, 11, 11, 11, 11}},
    			true,
    		},
    		{
    			[]string{"data{1...4}"},
    			[]uint64{4},
    			[][]uint64{{4}},
    			true,
    		},
    		{
    			[]string{"data/controller1/export{1...10}, data/controller2/export{1...10}, data/controller3/export{1...10}"},
    			[]uint64{10, 10, 10},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    	return func() time.Duration {
    		return resyncPeriod
    	}
    }
    
    // Expectations are a way for controllers to tell the controller manager what they expect. eg:
    //	ControllerExpectations: {
    //		controller1: expects  2 adds in 2 minutes
    //		controller2: expects  2 dels in 2 minutes
    //		controller3: expects -1 adds in 2 minutes => controller3's expectations have already been met
    //	}
    //
    // Implementation:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller.go

    		}
    	}
    	c := &Controller{
    		instanceID:       instanceID,
    		store:            store,
    		cleanupLimit:     rate.NewLimiter(rate.Limit(20), 1),
    		cleanupQueue:     queue.NewDelayed(),
    		adsConnections:   newAdsConnections(),
    		maxConnectionAge: maxConnAge,
    	}
    	c.queue = controllers.NewQueue("unregister_workloadentry",
    		controllers.WithMaxAttempts(maxRetries),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/controller.go

    	// re-convert ingress to new-vs.
    	c.services.AddEventHandler(controllers.FromEventHandler(func(o controllers.Event) {
    		c.onServiceEvent(o)
    	}))
    
    	return c
    }
    
    func (c *controller) Run(stop <-chan struct{}) {
    	kube.WaitForCacheSync("ingress", stop, c.ingress.HasSynced, c.services.HasSynced, c.classes.HasSynced)
    	c.queue.Run(stop)
    	controllers.ShutdownAll(c.ingress, c.services, c.classes)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/webhooks/validation/controller/controller.go

    ) *Controller {
    	o := Options{
    		WatchedNamespace: ns,
    		CABundleWatcher:  caBundleWatcher,
    		Revision:         revision,
    		ServiceName:      "istiod",
    	}
    	return newController(o, client)
    }
    
    func newController(o Options, client kube.Client) *Controller {
    	c := &Controller{
    		o:      o,
    		client: client,
    	}
    
    	c.queue = controllers.NewQueue("validation",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/aggregate/controller.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // The aggregate controller does not implement serviceregistry.Instance since it may be comprised of various
    // providers and clusters.
    var (
    	_ model.ServiceDiscovery    = &Controller{}
    	_ model.AggregateController = &Controller{}
    )
    
    // Controller aggregates data across different registries and monitors for changes
    type Controller struct {
    	meshHolder mesh.Holder
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller.go

    	)
    )
    
    // Options stores the configurable attributes of a Controller.
    type Options struct {
    	SystemNamespace string
    
    	// MeshServiceController is a mesh-wide service Controller.
    	MeshServiceController *aggregate.Controller
    
    	DomainSuffix string
    
    	// ClusterID identifies the cluster which the controller communicate with.
    	ClusterID cluster.ID
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/controller.go

    // Controller defines the controller for the gateway-api. The controller acts a bit different from most.
    // Rather than watching the CRs directly, we depend on the existing model.ConfigStoreController which
    // already watches all CRs. When there are updates, a new PushContext will be computed, which will eventually
    // call Controller.Reconcile(). Once this happens, we will inspect the current state of the world, and transform
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pkg/controller/resourceclaim/controller.go

    	for _, obj := range objs {
    		ec.enqueuePod(logger, obj, false)
    	}
    }
    
    func (ec *Controller) Run(ctx context.Context, workers int) {
    	defer runtime.HandleCrash()
    	defer ec.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting resource claim controller")
    	defer logger.Info("Shutting down resource claim controller")
    
    	eventBroadcaster := record.NewBroadcaster(record.WithContext(ctx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller.go

    func (s *Controller) AppendWorkloadHandler(h func(*model.WorkloadInstance, model.Event)) {
    	s.workloadHandlers = append(s.workloadHandlers, h)
    }
    
    // Run is used by some controllers to execute background jobs after init is done.
    func (s *Controller) Run(stopCh <-chan struct{}) {
    	s.edsQueue.Run(stopCh)
    }
    
    // HasSynced always returns true for SE
    func (s *Controller) HasSynced() bool {
    	return true
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top