Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for downstreamGrpcOptions (0.27 sec)

  1. pkg/istio-agent/xds_proxy.go

    		xdsUdsPath:            ia.cfg.XdsUdsPath,
    		wasmCache:             cache,
    		proxyAddresses:        ia.cfg.ProxyIPAddresses,
    		ia:                    ia,
    		downstreamGrpcOptions: ia.cfg.DownstreamGrpcOptions,
    	}
    
    	if ia.localDNSServer != nil {
    		proxy.handlers[model.NameTableType] = func(resp *anypb.Any) error {
    			var nt dnsProto.NameTable
    			if err := resp.UnmarshalTo(&nt); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_test.go

    	}
    	dir := t.TempDir()
    	ia := NewAgent(proxyConfig, &AgentOptions{
    		XdsUdsPath:            filepath.Join(dir, "XDS"),
    		DownstreamGrpcOptions: opts,
    	}, secOpts, envoy.ProxyConfig{TestOnly: true})
    	t.Cleanup(func() {
    		ia.Close()
    	})
    	proxy, err := initXdsProxy(ia)
    	if err != nil {
    		t.Fatalf("Failed to initialize xds proxy %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/istio-agent/agent.go

    	// GRPCBootstrapPath if set will generate a file compatible with GRPC_XDS_BOOTSTRAP
    	GRPCBootstrapPath string
    
    	// Disables all envoy agent features
    	DisableEnvoy          bool
    	DownstreamGrpcOptions []grpc.ServerOption
    
    	IstiodSAN string
    
    	WASMOptions wasm.Options
    
    	UseExternalWorkloadSDS bool
    
    	// Enable metadata discovery bootstrap extension
    	MetadataDiscovery bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top