Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ClientOptions (0.41 sec)

  1. pilot/pkg/grpc/grpc.go

    	defaultInitialConnWindowSize       = 1024 * 1024 // default gRPC InitialWindowSize
    	defaultInitialWindowSize           = 1024 * 1024 // default gRPC ConnWindowSize
    )
    
    // ClientOptions returns consistent grpc dial options with custom dial options
    func ClientOptions(options *istiokeepalive.Options, tlsOpts *TLSOptions) ([]grpc.DialOption, error) {
    	if options == nil {
    		options = istiokeepalive.DefaultOption()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/providers/citadel/client.go

    			SAN:           c.opts.CAEndpointSAN,
    		}
    	}
    	return nil
    }
    
    func (c *CitadelClient) buildConnection() (*grpc.ClientConn, error) {
    	tlsOpts := c.getTLSOptions()
    	opts, err := istiogrpc.ClientOptions(nil, tlsOpts)
    	if err != nil {
    		return nil, err
    	}
    	opts = append(opts,
    		grpc.WithPerRPCCredentials(c.provider),
    		security.CARetryInterceptor(),
    	)
    	conn, err := grpc.Dial(c.opts.CAEndpoint, opts...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/grpcgen_test.go

    		if err != nil {
    			log.Error(err)
    		}
    	}()
    	ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
    	defer cancel()
    
    	creds, _ := xdscreds.NewClientCredentials(xdscreds.ClientOptions{
    		FallbackCreds: insecure.NewCredentials(),
    	})
    
    	conn, err := grpc.DialContext(ctx, fmt.Sprintf("xds:///%s.test.svc.cluster.local:%d", svcname, port),
    		grpc.WithTransportCredentials(creds),
    		grpc.WithBlock(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    	tlsOpts, err := p.getTLSOptions(sa)
    	if err != nil {
    		return nil, fmt.Errorf("failed to get TLS options to talk to upstream: %v", err)
    	}
    	options, err := istiogrpc.ClientOptions(nil, tlsOpts)
    	if err != nil {
    		return nil, err
    	}
    	if sa.secOpts.CredFetcher != nil {
    		options = append(options, grpc.WithPerRPCCredentials(caclient.NewDefaultTokenProvider(sa.secOpts)))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top