client.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. Copyright 2018 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package podresources
  14. import (
  15. "context"
  16. "fmt"
  17. "time"
  18. "google.golang.org/grpc"
  19. podresourcesapi "k8s.io/kubernetes/pkg/kubelet/apis/podresources/v1alpha1"
  20. "k8s.io/kubernetes/pkg/kubelet/util"
  21. )
  22. // GetClient returns a client for the PodResourcesLister grpc service
  23. func GetClient(socket string, connectionTimeout time.Duration, maxMsgSize int) (podresourcesapi.PodResourcesListerClient, *grpc.ClientConn, error) {
  24. addr, dialer, err := util.GetAddressAndDialer(socket)
  25. if err != nil {
  26. return nil, nil, err
  27. }
  28. ctx, cancel := context.WithTimeout(context.Background(), connectionTimeout)
  29. defer cancel()
  30. conn, err := grpc.DialContext(ctx, addr, grpc.WithInsecure(), grpc.WithContextDialer(dialer), grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(maxMsgSize)))
  31. if err != nil {
  32. return nil, nil, fmt.Errorf("error dialing socket %s: %v", socket, err)
  33. }
  34. return podresourcesapi.NewPodResourcesListerClient(conn), conn, nil
  35. }