Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ServiceAddressedWaypoint (0.26 sec)

  1. tests/integration/ambient/main_test.go

    	apps.ServiceAddressedWaypoint = match.ServiceName(echo.NamespacedName{Name: ServiceAddressedWaypoint, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.AllWaypoint = apps.AllWaypoint.Append(apps.WorkloadAddressedWaypoint)
    	apps.AllWaypoint = apps.AllWaypoint.Append(apps.ServiceAddressedWaypoint)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/match/matchers.go

    }
    
    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()
    }
    
    var NotWaypoint = And(Not(ServiceAddressedWaypoint), Not(WorkloadAddressedWaypoint))
    
    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. tests/integration/ambient/baseline_test.go

    			run("VIP destination", echo.CallOptions{
    				To:      apps.ServiceAddressedWaypoint,
    				Count:   1,
    				Address: apps.ServiceAddressedWaypoint[0].Address(),
    				Port:    echo.Port{Name: ports.HTTP.Name},
    				HBONE:   hbsvc,
    				Check:   check.OK(),
    			})
    			run("VIP destination, unknown port", echo.CallOptions{
    				To:      apps.ServiceAddressedWaypoint,
    				Count:   1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. tests/integration/ambient/wasm_test.go

    	name         string
    	testHostname string
    }
    
    var generation = 0
    
    func GetClientInstances() echo.Instances {
    	return apps.Captured
    }
    
    func GetTarget() echo.Target {
    	return apps.ServiceAddressedWaypoint
    }
    
    func mapTagToVersionOrFail(t framework.TestContext, tag, version string) {
    	t.Helper()
    	if err := registry.SetupTagMap(map[string]string{
    		imageName + ":" + tag: version,
    	}); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top