Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/test/framework/components/echo/match/matchers.go

    var TProxy Matcher = func(i echo.Instance) bool {
    	return i.Config().IsTProxy()
    }
    
    var NotTProxy = Not(TProxy)
    
    var ServiceAddressedWaypoint Matcher = func(i echo.Instance) bool {
    	return i.Config().HasServiceAddressedWaypointProxy()
    }
    
    var WorkloadAddressedWaypoint Matcher = func(i echo.Instance) bool {
    	return i.Config().HasWorkloadAddressedWaypointProxy()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters.go

    		// client has l7
    		return to
    	}
    	// otherwise give only serverside l7 endpoints
    	return match.Matcher(func(instance echo.Instance) bool {
    		return instance.Config().HasServiceAddressedWaypointProxy() ||
    			instance.Config().HasWorkloadAddressedWaypointProxy()
    	}).GetMatches(to)
    }
    
    // ReachableDestinations filters out known-unreachable destinations given a source.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top