Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for waypointServices (0.12 sec)

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

    	serviceInfos := push.ServicesForWaypoint(key)
    
    	waypointServices := &waypointServices{}
    	for _, s := range serviceInfos {
    		hostName := host.Name(s.Service.Hostname)
    		svc, ok := push.ServiceIndex.HostnameAndNamespace[hostName][s.Namespace]
    		if !ok {
    			continue
    		}
    		if waypointServices.services == nil {
    			waypointServices.services = map[host.Name]*model.Service{}
    		}
    		waypointServices.services[hostName] = svc
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/match/matchers.go

    	return i.Config().HasWorkloadAddressedWaypointProxy()
    }
    
    var NotWaypoint = And(Not(ServiceAddressedWaypoint), Not(WorkloadAddressedWaypoint))
    
    // add a "waypointed service" matcher
    func WaypointService() Matcher {
    	return func(i echo.Instance) bool {
    		return ServiceAddressedWaypoint(i)
    	}
    }
    
    func AmbientCaptured() Matcher {
    	return func(i echo.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top