Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addConfigs (0.08 sec)

  1. pkg/test/framework/components/echo/common/deployment/echos.go

    	//
    	// Custom echo instances will be accessible from the `All` field in the namespace(s) under which they
    	// were created.
    	Configs echo.ConfigGetter
    }
    
    // AddConfigs appends to the configs to be deployed
    func (c *Config) AddConfigs(configs []echo.Config) *Config {
    	var existing echo.ConfigGetter
    	if c.Configs != nil {
    		existing = c.Configs
    	}
    	c.Configs = func() []echo.Config {
    		var out []echo.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller.go

    	instancesUpdated := []*model.ServiceInstance{}
    	instancesDeleted := []*model.ServiceInstance{}
    	fullPush := false
    	configsUpdated := sets.New[model.ConfigKey]()
    
    	addConfigs := func(se *networking.ServiceEntry, services []*model.Service) {
    		// If serviceentry's resolution is DNS, make a full push
    		// TODO: maybe cds?
    		if isDNSTypeServiceEntry(se) {
    			fullPush = 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