-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkube.go
37 lines (29 loc) · 876 Bytes
/
kube.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
package examples
import (
"flag"
"path/filepath"
"github.com/b4fun/kubekit/kubehelper"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/util/homedir"
)
func BindCLIFlags(fs *flag.FlagSet) *string {
if home := homedir.HomeDir(); home != "" {
return fs.String("kubeconfig", filepath.Join(home, ".kube", "config"), "(optional) absolute path to the kubeconfig file")
}
return fs.String("kubeconfig", "", "absolute path to the kubeconfig file")
}
func GetClusterRestConfig(kubeconfig string) (*rest.Config, error) {
return kubehelper.LoadRestConfig("", kubeconfig)
}
func GetKubeClient(kubeconfig string) (kubernetes.Interface, error) {
config, err := GetClusterRestConfig(kubeconfig)
if err != nil {
return nil, err
}
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
return nil, err
}
return clientset, nil
}