Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WaypointProxies (0.28 sec)

  1. tests/integration/ambient/main_test.go

    		return err
    	}
    
    	if apps.WaypointProxies == nil {
    		apps.WaypointProxies = make(map[string]ambient.WaypointProxy)
    	}
    
    	for _, echo := range echos {
    		svcwp := echo.Config().ServiceWaypointProxy
    		wlwp := echo.Config().WorkloadWaypointProxy
    		if svcwp != "" {
    			if _, found := apps.WaypointProxies[svcwp]; !found {
    				apps.WaypointProxies[svcwp], err = ambient.NewWaypointProxy(t, apps.Namespace, svcwp)
    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/common/deployment/echos.go

    		return nil, err
    	}
    
    	if ctx.Settings().Ambient {
    
    		waypointProxies := make(map[string]ambient.WaypointProxy)
    
    		for _, echo := range echos {
    			svcwp := echo.Config().ServiceWaypointProxy
    			wlwp := echo.Config().WorkloadWaypointProxy
    			var err error
    			if svcwp != "" {
    				if _, found := waypointProxies[svcwp]; !found {
    					waypointProxies[svcwp], err = ambient.NewWaypointProxy(ctx, echo.Config().Namespace, svcwp)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			// this is real odd but we're going to assume for now that we've just got the one waypoint I guess?
    			hbwl := echo.HBONE{
    				Address:            apps.WaypointProxies[apps.WorkloadAddressedWaypoint.Config().WorkloadWaypointProxy].Inbound(),
    				Headers:            nil,
    				Cert:               string(cert.ClientCert),
    				Key:                string(cert.Key),
    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