@@ -6,16 +6,18 @@ import (
6
6
7
7
"github.com/spf13/pflag"
8
8
"k8s.io/apimachinery/pkg/runtime"
9
+ "k8s.io/client-go/kubernetes"
9
10
"k8s.io/client-go/tools/clientcmd"
10
11
"k8s.io/client-go/util/homedir"
11
12
"sigs.k8s.io/controller-runtime/pkg/client"
12
13
)
13
14
14
15
type Config struct {
15
- CollectionDir string
16
- OperatorName string
17
- OperatorNamespace string
18
- KubernetesClient client.Client
16
+ CollectionDir string
17
+ OperatorName string
18
+ OperatorNamespace string
19
+ KubernetesClient client.Client
20
+ KubernetesClientSet * kubernetes.Clientset
19
21
}
20
22
21
23
func NewConfig (scheme * runtime.Scheme ) (Config , error ) {
@@ -37,10 +39,16 @@ func NewConfig(scheme *runtime.Scheme) (Config, error) {
37
39
return Config {}, fmt .Errorf ("Creating the Kubernetes client: %s\n " , err )
38
40
}
39
41
42
+ clientset , err := kubernetes .NewForConfig (config )
43
+ if err != nil {
44
+ return Config {}, fmt .Errorf ("Creating the Kubernetes clienset: %s\n " , err )
45
+ }
46
+
40
47
return Config {
41
- CollectionDir : collectionDir ,
42
- KubernetesClient : clusterClient ,
43
- OperatorName : operatorName ,
44
- OperatorNamespace : operatorNamespace ,
48
+ CollectionDir : collectionDir ,
49
+ KubernetesClient : clusterClient ,
50
+ KubernetesClientSet : clientset ,
51
+ OperatorName : operatorName ,
52
+ OperatorNamespace : operatorNamespace ,
45
53
}, nil
46
54
}
0 commit comments