Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ResyncEDS (0.19 sec)

  1. pilot/pkg/networking/core/fake.go

    	retry.UntilOrFail(f.t, f.store.HasSynced, retry.Delay(time.Millisecond))
    	retry.UntilOrFail(f.t, f.Registry.HasSynced, retry.Delay(time.Millisecond))
    
    	f.ServiceEntryRegistry.ResyncEDS()
    }
    
    // SetupProxy initializes a proxy for the current environment. This should generally be used when creating
    // any proxy. For example, `p := SetupProxy(&model.Proxy{...})`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pilot/test/xds/fake.go

    	// Now that handlers are added, get everything started
    	cg.Run()
    	kubelib.WaitForCacheSync("fake", stop,
    		cg.Registry.HasSynced,
    		cg.Store().HasSynced)
    	cg.ServiceEntryRegistry.ResyncEDS()
    
    	// Send an update. This ensures that even if there are no configs provided, the push context is
    	// initialized.
    	s.ConfigUpdate(&model.PushRequest{Full: true})
    
    	// Wait until initial updates are committed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    		if service.Hostname == hostname {
    			return service
    		}
    	}
    
    	return nil
    }
    
    // ResyncEDS will do a full EDS update. This is needed for some tests where we have many configs loaded without calling
    // the config handlers.
    // This should probably not be used in production code.
    func (s *Controller) ResyncEDS() {
    	s.mutex.RLock()
    	allInstances := s.serviceInstances.getAll()
    	s.mutex.RUnlock()
    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