Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WaypointClient (0.34 sec)

  1. pkg/test/framework/components/echo/config.go

    		!c.HasWorkloadAddressedWaypointProxy() &&
    		!c.ZTunnelCaptured() &&
    		!c.DualStack
    }
    
    // WaypointClient means the client supports HBONE and does zTunnel redirection.
    // Currently, only zTunnel captured sources do this. Eventually this might be enabled
    // for ingress and/or sidecars.
    func (c Config) WaypointClient() bool {
    	return c.ZTunnelCaptured() && !c.IsUncaptured()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters.go

    		reachableWaypoints(from)).
    		GetMatches(to)
    }
    
    // reachableWaypoints removes waypointed targets when the client doesn't
    func reachableWaypoints(from echo.Instance) match.Matcher {
    	if from.Config().WaypointClient() {
    		return match.Any
    	}
    	return match.NotWaypoint
    }
    
    // reachableHeadlessDestinations filters out headless services that aren't in the same cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			// Sidecars lose the original src
    			opt.Check = check.And(opt.Check, OriginalSourceCheck(t, src))
    		}
    
    		// Non-HBONE clients will attempt to bypass the waypoint
    		if !src.Config().WaypointClient() && dst.Config().HasAnyWaypointProxy() && !src.Config().HasSidecar() {
    			// TODO currently leads to no L7 processing, in the future it might be denied
    			// opt.Check = check.Error()
    			opt.Check = tcpValidator
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top