Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AmbientCaptured (0.17 sec)

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

    // 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 {
    		return i.Config().ZTunnelCaptured() && !i.Config().IsUncaptured()
    	}
    }
    
    // RegularPod matches echos that don't meet any of the following criteria:
    // - VM
    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. tests/integration/pilot/common/routing.go

    ---
    `
    	matchers := []match.Matcher{match.And(
    		// No waypoint here, these are all via ingress which doesn't forward to waypoint
    		match.NotWaypoint,
    		match.Or(match.ServiceName(t.Apps.B.NamespacedName()), match.AmbientCaptured()),
    	)}
    	headersWithToken := map[string][]string{
    		"Authorization": {"Bearer " + jwt.TokenIssuer1WithNestedClaims1},
    	}
    	headersWithInvalidToken := map[string][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top