-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
50 lines (43 loc) · 1.38 KB
/
main.go
File metadata and controls
50 lines (43 loc) · 1.38 KB
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
package main
import (
"flag"
"log"
"path/filepath"
"time"
"github.com/hdkshingala/servicecreator/controller"
"k8s.io/client-go/informers"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/util/homedir"
)
func main() {
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")
}
flag.Parse()
config, err := rest.InClusterConfig()
if err != nil {
log.Printf("Error received while creating config from InCluster, error: %s.\n", err.Error())
config, err = clientcmd.BuildConfigFromFlags("", *kubeconfig)
if err != nil {
log.Printf("Error received while creating config from Config, error: %s.\n", err.Error())
return
}
}
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
log.Printf("Error received while creating client set, error: %s.\n", err.Error())
return
}
ch := make(chan struct{})
informers := informers.NewSharedInformerFactory(clientset, 10*time.Minute)
c := controller.NewController(clientset, informers.Apps().V1().Deployments())
informers.Start(ch)
if err = c.Run(ch); err != nil {
log.Printf("Error running controller, %s", err.Error())
}
}