Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 342 for Destinations (0.39 sec)

  1. pkg/config/analysis/analyzers/virtualservice/util.go

    		if m := r.GetMirror(); m != nil {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:    "http.mirror",
    				ServiceIndex: i,
    				Destination:  m,
    			})
    		}
    
    		for j, m := range r.GetMirrors() {
    			destinations = append(destinations, &AnnotatedDestination{
    				RouteRule:        "http.mirrors",
    				ServiceIndex:     i,
    				DestinationIndex: j,
    				Destination:      m.GetDestination(),
    			})
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/testing/fake.go

    		return fmt.Errorf("failed to add destination for service %v, service not found", key.String())
    	}
    	dests := f.Destinations[key]
    	if dests == nil {
    		dests = make([]*utilipvs.RealServer, 0)
    		f.Destinations[key] = dests
    	}
    	f.Destinations[key] = append(f.Destinations[key], dest)
    	// The tests assumes that the slice is sorted
    	sort.Sort(byAddress(f.Destinations[key]))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/filters.go

    }
    
    // To applies each of the filter functions in order to allow removing workloads from the set of destinations.
    // Example:
    //
    //	echotest.New(t, apps).
    //	  To(echotest.SimplePodServiceAndAllSpecial).
    //	  Run()
    func (t *T) To(filters ...Filter) *T {
    	for _, filter := range filters {
    		t.destinations = filter(t.destinations)
    	}
    	return t
    }
    
    func (t *T) ToMatch(m match.Matcher) *T {
    	return t.To(FilterMatch(m))
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/virtualservice/destinationhosts.go

    				if destinations.Destination.Subset != "" {
    					for _, host := range virtualservice.Hosts {
    						if destinations.Destination.Host == host {
    							virtualservices[r.Metadata.FullName] = append(virtualservices[r.Metadata.FullName], destinations.Destination)
    						}
    					}
    				}
    			}
    		}
    
    		return true
    	})
    
    	return virtualservices
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

    public interface LoggingOutputInternal extends LoggingOutput {
        /**
         * Adds System.out and System.err as logging destinations. The output will include plain text only, with no color or dynamic text.
         */
        void attachSystemOutAndErr();
    
        /**
         * Adds the current processes' stdout and stderr as logging destinations. The output will also include color and dynamic text when one of these
         * is connected to a console.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pilot/pkg/features/ambient.go

    	EnableHBONESend = registerAmbient(
    		"PILOT_ENABLE_SENDING_HBONE",
    		true, false,
    		"If enabled, HBONE will be allowed when sending to destinations.")
    
    	EnableSidecarHBONEListening = registerAmbient(
    		"PILOT_ENABLE_SIDECAR_LISTENING_HBONE",
    		true, false,
    		"If enabled, HBONE support can be configured for proxies.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. releasenotes/notes/13330.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 13330
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 183 bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/a.yaml

      http:
      # (This 'match' clause started as a work-around, because WaitUntilCallable() times out if
      # all destinations have a subset.  We are now using it for testing.)
      - match:
        - headers:
            end-user:
              exact: jason
        route:
        - destination:
            host: a
      # Fallthrough
      - route:
        - destination:
            host: a
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 942 bytes
    - Viewed (0)
  9. samples/external/README.md

    By default, Istio-enabled services are unable to access services and URLs outside the cluster. Pods use <i>iptables</i> to transparently redirect all outbound traffic to the sidecar proxy, which only handles intra-cluster destinations.
    
    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tests/integration/security/util/reachability/context.go

    type TestCase struct {
    	// ConfigFile is the name of the yaml contains the authentication policy and destination rule CRs
    	// that are needed for the test setup.
    	// The file is expected in the tests/integration/security/reachability/testdata folder.
    	ConfigFile string
    	Namespace  namespace.Instance
    
    	// CallOpts specified the call options for destination service. If not specified, use the default
    	// framework provided ones.
    	CallOpts []echo.CallOptions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
Back to top