-
Notifications
You must be signed in to change notification settings - Fork 202
/
client.go
77 lines (65 loc) · 2.08 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// ------------------------------------------------------------
package kubernetes
import (
"flag"
"fmt"
"os"
"path/filepath"
"strings"
scheme "github.com/dapr/dapr/pkg/client/clientset/versioned"
k8s "k8s.io/client-go/kubernetes"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp" // gcp auth
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc" // oidc auth
_ "k8s.io/client-go/plugin/pkg/client/auth/openstack" // openstack auth
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
)
const kubeConfigDelimiter = ":"
func getConfig() (*rest.Config, error) {
var kubeconfig *string
if home := homeDir(); home != "" {
kubeconfig = flag.String("kubeconfig", filepath.Join(home, ".kube", "config"), "(optional) absolute path to the kubeconfig file")
} else {
kubeconfig = flag.String("kubeconfig", "", "absolute path to the kubeconfig file")
}
flag.Parse()
kubeConfigEnv := os.Getenv("KUBECONFIG")
delimiterBelongsToPath := strings.Count(*kubeconfig, kubeConfigDelimiter) == 1 && strings.EqualFold(*kubeconfig, kubeConfigEnv)
if len(kubeConfigEnv) != 0 && !delimiterBelongsToPath {
kubeConfigs := strings.Split(kubeConfigEnv, kubeConfigDelimiter)
if len(kubeConfigs) > 1 {
return nil, fmt.Errorf("multiple kubeconfigs in KUBECONFIG environment variable - %s", kubeConfigEnv)
}
kubeconfig = &kubeConfigs[0]
}
config, err := clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
return nil, err
}
return config, nil
}
// Client returns a new Kubernetes client.
func Client() (*k8s.Clientset, error) {
config, err := getConfig()
if err != nil {
return nil, err
}
return k8s.NewForConfig(config)
}
// DaprClient returns a new Kubernetes Dapr client
func DaprClient() (scheme.Interface, error) {
config, err := getConfig()
if err != nil {
return nil, err
}
return scheme.NewForConfig(config)
}
func homeDir() string {
if h := os.Getenv("HOME"); h != "" {
return h
}
return os.Getenv("USERPROFILE") // windows
}