-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
72 lines (59 loc) · 2.43 KB
/
main.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
package main
import (
"flag"
"fmt"
"github.com/Neaj-Morshad-101/crd-controller/controller"
clientset "github.com/Neaj-Morshad-101/crd-controller/pkg/client/clientset/versioned"
informers "github.com/Neaj-Morshad-101/crd-controller/pkg/client/informers/externalversions"
kubeinformers "k8s.io/client-go/informers"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
_ "k8s.io/code-generator"
"log"
"path/filepath"
"time"
)
func main() {
log.Println("Configuring KubeConfig...")
var kubeconfig *string
if home := homedir.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")
}
log.Printf("kubeconfig : %s", *kubeconfig)
config, err := clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
panic(err)
}
//log.Printf("config : %s", config)
kubeClient, err := kubernetes.NewForConfig(config)
if err != nil {
panic(err)
}
println(kubeClient)
exampleClient, err := clientset.NewForConfig(config)
if err != nil {
panic(err)
}
// Initialise the informer resource and here we will be using sharedinformer factory instead of simple informers
// because in case if we need to query / watch multiple Group versions, and it’s a good practise as well
// NewSharedInformerFactory will create a new ShareInformerFactory for "all namespaces"
// 30*time.Second is the re-sync period to update the in-memory cache of informer //
kubeInformationFactory := kubeinformers.NewSharedInformerFactory(kubeClient, time.Second*30)
exampleInformationFactory := informers.NewSharedInformerFactory(exampleClient, time.Second*30)
fmt.Println(kubeInformationFactory, exampleInformationFactory)
// From this informerfactory we can create specific informers for every group version resource
// that are default available in k8s environment such as Pods, deployment, etc
// podInformer := kubeInformationFactory.Core().V1().Pods()
ctrl := controller.NewController(kubeClient, exampleClient,
kubeInformationFactory.Apps().V1().Deployments(),
exampleInformationFactory.Neajmorshad().V1beta1().Klusters())
stopCh := make(chan struct{})
kubeInformationFactory.Start(stopCh)
exampleInformationFactory.Start(stopCh)
if err = ctrl.Run(2, stopCh); err != nil {
log.Println("Error running controller")
}
}