mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 20:57:38 +08:00
23 lines
492 B
Go
23 lines
492 B
Go
package controller
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
"k8s.io/client-go/kubernetes"
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
)
|
|
|
|
func NewClientSet(kubeconfig string) (*kubernetes.Clientset, error) {
|
|
conf, err := clientcmd.BuildConfigFromFlags("", kubeconfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
conf.QPS = 50
|
|
conf.Burst = 100
|
|
clientSet, err := kubernetes.NewForConfig(conf)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
logrus.Debug("Kube client api create success.")
|
|
|
|
return clientSet, nil
|
|
} |