Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ServicesForWaypoint (0.34 sec)

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

    	model.NetworkGatewaysHandler
    }
    
    func (c *Controller) ServicesForWaypoint(key model.WaypointKey) []model.ServiceInfo {
    	if !features.EnableAmbient {
    		return nil
    	}
    	var res []model.ServiceInfo
    	for _, p := range c.GetRegistries() {
    		res = append(res, p.ServicesForWaypoint(key)...)
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    	AdditionalPodSubscriptions(
    		proxy *Proxy,
    		allAddresses sets.String,
    		currentSubs sets.String,
    	) sets.String
    	Policies(requested sets.Set[ConfigKey]) []WorkloadAuthorization
    	ServicesForWaypoint(WaypointKey) []ServiceInfo
    	WorkloadsForWaypoint(WaypointKey) []WorkloadInfo
    }
    
    // WaypointKey is a multi-address extension of NetworkAddress which is commonly used for lookups in AmbientIndex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top