Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mongo_proxy (0.31 sec)

  1. pilot/pkg/features/xds.go

    	).Get()
    
    	// EnableMongoFilter enables injection of `envoy.filters.network.mongo_proxy` in the filter chain.
    	EnableMongoFilter = env.Register(
    		"PILOT_ENABLE_MONGO_FILTER",
    		true,
    		"EnableMongoFilter enables injection of `envoy.filters.network.mongo_proxy` in the filter chain.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pkg/config/xds/deprecated.go

    		wellknown.ClientSSLAuth:               "envoy.client_ssl_auth",
    		wellknown.ExternalAuthorization:       "envoy.ext_authz",
    		wellknown.HTTPConnectionManager:       "envoy.http_connection_manager",
    		wellknown.MongoProxy:                  "envoy.mongo_proxy",
    		wellknown.RateLimit:                   "envoy.ratelimit",
    		wellknown.RedisProxy:                  "envoy.redis_proxy",
    		wellknown.TCPProxy:                    "envoy.tcp_proxy",
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/wellknown/wellknown.go

    	// TCPProxy network filter
    	TCPProxy = "envoy.filters.network.tcp_proxy"
    	// RateLimit network filter
    	RateLimit = "envoy.filters.network.ratelimit"
    	// MongoProxy network filter
    	MongoProxy = "envoy.filters.network.mongo_proxy"
    	// ThriftProxy network filter
    	ThriftProxy = "envoy.filters.network.thrift_proxy"
    	// RedisProxy network filter
    	RedisProxy = "envoy.filters.network.redis_proxy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter.go

    }
    
    // buildMongoFilter builds an outbound Envoy MongoProxy filter.
    func buildMongoFilter(statPrefix string) *listener.Filter {
    	// TODO: add a watcher for /var/lib/istio/mongo/certs
    	// if certs are found use, TLS or mTLS clusters for talking to MongoDB.
    	// User is responsible for mounting those certs in the pod.
    	mongoProxy := &mongo.MongoProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/xds_test.go

    				Address: "0.0.0.0",
    				PortSpecifier: &core.SocketAddress_PortValue{
    					PortValue: uint32(27018),
    				},
    			}, "{.address.socketAddress}").
    			Select("{.filterChains[0].filters[0]}").
    			Equals("envoy.mongo_proxy", "{.name}").
    			Select("{.typedConfig}").
    			Exists("{.statPrefix}").
    			CheckOrFail(t)
    	})
    }
    
    func TestEgressProxy(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/local_ratelimit/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/mongo_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/ratelimit/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/rbac/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. pkg/adsc/adsc.go

    			port := l.Address.GetSocketAddress().GetPortValue()
    			if port == 15002 {
    				routes = append(routes, "http_proxy")
    			} else {
    				routes = append(routes, fmt.Sprintf("%d", port))
    			}
    		case wellknown.MongoProxy:
    			// ignore for now
    		case wellknown.RedisProxy:
    			// ignore for now
    		case wellknown.MySQLProxy:
    			// ignore for now
    		default:
    			adscLog.Infof(protomarshal.ToJSONWithIndent(l, "  "))
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top