Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewGRPCService (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service.go

    type gRPCService struct {
    	kmsClient   kmsapi.KeyManagementServiceClient
    	connection  *grpc.ClientConn
    	callTimeout time.Duration
    }
    
    // NewGRPCService returns an envelope.Service which use gRPC to communicate the remote KMS provider.
    func NewGRPCService(ctx context.Context, endpoint, providerName string, callTimeout time.Duration) (kmsservice.Service, error) {
    	klog.V(4).InfoS("Configure KMS provider", "endpoint", endpoint)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:18:16 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service.go

    	connection     *grpc.ClientConn
    	callTimeout    time.Duration
    	mux            sync.RWMutex
    	versionChecked bool
    }
    
    // NewGRPCService returns an envelope.Service which use gRPC to communicate the remote KMS provider.
    func NewGRPCService(ctx context.Context, endpoint string, callTimeout time.Duration) (Service, error) {
    	klog.V(4).InfoS("Configure KMS provider", "endpoint", endpoint)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 00:47:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top