Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newServiceExportCache (0.22 sec)

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

    	Run(stop <-chan struct{})
    
    	// HasSynced indicates whether the kube createClient has synced for the watched resources.
    	HasSynced() bool
    }
    
    // newServiceExportCache creates a new serviceExportCache that observes the given cluster.
    func newServiceExportCache(c *Controller) serviceExportCache {
    	if features.EnableMCSServiceDiscovery {
    		ec := &serviceExportCacheImpl{
    			Controller: c,
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller.go

    			ClusterID:       options.ClusterID,
    			Revision:        options.Revision,
    			XDSUpdater:      options.XDSUpdater,
    			LookupNetwork:   c.Network,
    		})
    	}
    	c.exports = newServiceExportCache(c)
    	c.imports = newServiceImportCache(c)
    
    	c.meshWatcher = options.MeshWatcher
    	if c.opts.MeshNetworksWatcher != nil {
    		c.networksHandlerRegistration = c.opts.MeshNetworksWatcher.AddNetworksHandler(func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top