Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PassthroughCluster (0.51 sec)

  1. pilot/pkg/xds/xds_test.go

    			Equals("virtualOutbound", "{.name}").
    			Equals("0.0.0.0", "{.address.socketAddress.address}").
    			Equals(wellknown.TCPProxy, "{.filterChains[1].filters[0].name}").
    			Equals("PassthroughCluster", "{.filterChains[1].filters[0].typedConfig.cluster}").
    			Equals("PassthroughCluster", "{.filterChains[1].filters[0].typedConfig.statPrefix}").
    			Equals(true, "{.useOriginalDst}").
    			CheckOrFail(t)
    	})
    
    	t.Run("mongo", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    	BlackHole = "block_all"
    	// PassthroughCluster to forward traffic to the original destination requested. This cluster is used when
    	// traffic does not match any listener in envoy.
    	PassthroughCluster = "PassthroughCluster"
    	// Passthrough is the name of the virtual host used to forward traffic to the
    	// PassthroughCluster
    	Passthrough = "allow_any"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta_test.go

    		ResourceNamesUnsubscribe: []string{"outbound|81||local.default.svc.cluster.local"},
    	})
    	ads.ExpectNoResponse()
    }
    
    func TestDeltaCDS(t *testing.T) {
    	base := sets.New("BlackHoleCluster", "PassthroughCluster", "InboundPassthroughCluster")
    	assertResources := func(resp *discovery.DeltaDiscoveryResponse, names ...string) {
    		t.Helper()
    		got := slices.Map(resp.Resources, (*discovery.Resource).GetName)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder.go

    	var egressCluster string
    
    	if util.IsAllowAnyOutbound(node) {
    		// We need a passthrough filter to fill in the filter stack for orig_dst listener
    		egressCluster = util.PassthroughCluster
    
    		// no need to check for nil value as the previous if check has checked
    		if node.SidecarScope.OutboundTrafficPolicy.EgressProxy != nil {
    			// user has provided an explicit destination for all the unknown traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    // This cluster is used to catch all traffic to unknown listener ports
    func (cb *ClusterBuilder) buildDefaultPassthroughCluster() *cluster.Cluster {
    	cluster := &cluster.Cluster{
    		Name:                 util.PassthroughCluster,
    		ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_ORIGINAL_DST},
    		ConnectTimeout:       proto.Clone(cb.req.Push.Mesh.ConnectTimeout).(*durationpb.Duration),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute.go

    	}
    	return
    }
    
    func buildCatchAllVirtualHost(node *model.Proxy, includeRequestAttemptCount bool) *route.VirtualHost {
    	if util.IsAllowAnyOutbound(node) {
    		egressCluster := util.PassthroughCluster
    		notimeout := durationpb.New(0)
    
    		// no need to check for nil value as the previous if check has checked
    		if node.SidecarScope.OutboundTrafficPolicy.EgressProxy != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top