Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HasServiceAddressedWaypointProxy (0.38 sec)

  1. tests/integration/ambient/baseline_test.go

    		if supportsL7(opt, src, dst) {
    			opt.Check = httpValidator
    		} else {
    			opt.Check = tcpValidator
    		}
    
    		if !dst.Config().HasServiceAddressedWaypointProxy() &&
    			!src.Config().HasServiceAddressedWaypointProxy() &&
    			(src.Config().Service != dst.Config().Service) &&
    			!dst.Config().HasSidecar() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. 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)
  3. pkg/test/framework/components/echo/config.go

    }
    
    func (c Config) HasAnyWaypointProxy() bool {
    	return c.ServiceWaypointProxy != "" || c.WorkloadWaypointProxy != ""
    }
    
    func (c Config) HasServiceAddressedWaypointProxy() bool {
    	return c.ServiceWaypointProxy != ""
    }
    
    func (c Config) HasWorkloadAddressedWaypointProxy() bool {
    	return c.WorkloadWaypointProxy != ""
    }
    
    func (c Config) HasSidecar() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. 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