Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DeployExternalServiceEntry (0.23 sec)

  1. pkg/test/framework/components/echo/common/deployment/namespace.go

    		// Create a ServiceEntry to allow apps in this namespace to talk to the external service.
    		if d.External.Namespace != nil {
    			DeployExternalServiceEntry(cfg, ns, d.External.Namespace, false)
    		}
    	}
    
    	return cfg.Apply(apply.NoCleanup)
    }
    
    func DeployExternalServiceEntry(cfg config.Factory, deployedNamespace, externalNamespace namespace.Instance, manuallyAllocate bool) config.Plan {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/headers_test.go

    					if strings.HasPrefix(hn, "x-envoy-peer-metadata") {
    						return fmt.Errorf("got unexpected proxy header: %v=%v", k, v)
    					}
    				}
    				return nil
    			})
    
    			cdeployment.DeployExternalServiceEntry(t.ConfigIstio(), ns, apps.External.Namespace, false).
    				ApplyOrFail(t, apply.CleanupConditionally)
    			instance.CallOrFail(t, echo.CallOptions{
    				Address: apps.External.All[0].Address(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tests/integration/ambient/main_test.go

    	apps.Mesh = inMesh.GetMatches(echos)
    	apps.MeshExternal = match.Not(inMesh).GetMatches(echos)
    
    	// TODO(https://github.com/istio/istio/issues/51083) remove manually allocate
    	if err := cdeployment.DeployExternalServiceEntry(t.ConfigIstio(), apps.Namespace, apps.ExternalNamespace, true).
    		Apply(apply.CleanupConditionally); err != nil {
    		return err
    	}
    
    	if apps.WaypointProxies == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top