Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for catch_all_route (0.17 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

     "typed_config": {
            "@type": "type.googleapis.com/envoy.extensions.filters.network.redis_proxy.v3.RedisProxy",
             "stat_prefix": "redis_stats",
             "prefix_routes": {
                 "catch_all_route": {
                     "cluster": "custom-redis-cluster"
                 }
             }
     }
    }`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/networkfilter_test.go

    		}
    		if !redisProxy.LatencyInMicros {
    			t.Errorf("redis proxy latency stat is not configured for microseconds")
    		}
    		if redisProxy.PrefixRoutes.CatchAllRoute.Cluster != "redis-cluster" {
    			t.Errorf("redis proxy's PrefixRoutes.CatchAllCluster is %s", redisProxy.PrefixRoutes.CatchAllRoute.Cluster)
    		}
    	} else {
    		t.Errorf("redis filter type is %T not listener.Filter_TypedConfig ", redisFilter.ConfigType)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    		Settings: &redis.RedisProxy_ConnPoolSettings{
    			OpTimeout: durationpb.New(redisOpTimeout),
    		},
    		PrefixRoutes: &redis.RedisProxy_PrefixRoutes{
    			CatchAllRoute: &redis.RedisProxy_PrefixRoutes_Route{
    				Cluster: clusterName,
    			},
    		},
    	}
    
    	out := &listener.Filter{
    		Name:       wellknown.RedisProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top