-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
63 lines (57 loc) · 2.33 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
package main
import (
"flag"
"fmt"
"github.com/PritamDas17021999/sample-controller/controller"
clientset "github.com/PritamDas17021999/sample-controller/pkg/client/clientset/versioned"
informers "github.com/PritamDas17021999/sample-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("Configure KubeConfig")
var kubeconfig *string
if home := homedir.HomeDir(); home != "" {
kubeconfig = flag.String("kubeconfig", filepath.Join(home, ".kube", "config"), "absolute path to kubeconfig file")
} else {
kubeconfig = flag.String("kubeconfig", "", "absolute path to kubeconfig file")
}
fmt.Println(kubeconfig)
config, err := clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
panic(err)
}
kubeClient, err := kubernetes.NewForConfig(config)
if err != nil {
panic(err)
}
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.Pritamdas().V1alpha1().Pritams())
stopCh := make(chan struct{})
kubeInformationFactory.Start(stopCh)
exampleInformationFactory.Start(stopCh)
if err = ctrl.Run(2, stopCh); err != nil {
log.Println("Error running controller")
}
}