Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HasSidecar (0.39 sec)

  1. tests/integration/ambient/waypoint_test.go

    				src := src
    				if !hboneClient(src) {
    					// TODO if we hairpinning, don't skip here
    					continue
    				}
    				t.NewSubTestf("from %s", src.ServiceName()).Run(func(t framework.TestContext) {
    					if src.Config().HasSidecar() {
    						t.Skip("TODO: sidecars don't properly handle use-waypoint")
    					}
    					for _, host := range apps.Captured.Config().HostnameVariants() {
    						host := host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	return c.ServiceWaypointProxy != ""
    }
    
    func (c Config) HasWorkloadAddressedWaypointProxy() bool {
    	return c.WorkloadWaypointProxy != ""
    }
    
    func (c Config) HasSidecar() bool {
    	var perPodEnable, perPodDisable bool
    	if len(c.Subsets) > 0 && c.Subsets[0].Labels != nil {
    		perPodEnable = c.Subsets[0].Labels["sidecar.istio.io/inject"] == "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/echos.go

    			},
    		}
    		defaultConfigs = append(defaultConfigs, proxylessGRPC)
    	}
    
    	if t.Settings().Ambient {
    		if t.Settings().AmbientEverywhere {
    			for i, config := range defaultConfigs {
    				if !config.HasSidecar() && !config.IsProxylessGRPC() {
    					scopes.Framework.Infof("adding waypoint to %s", config.NamespacedName())
    					defaultConfigs[i].ServiceWaypointProxy = "shared"
    					defaultConfigs[i].WorkloadWaypointProxy = "shared"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top