-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
61 lines (47 loc) · 1.88 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
package main
import (
"flag"
"time"
"github.com/golang/glog"
"k8s.io/client-go/informers"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
)
func main() {
var kubeconfig, masterURL, storageClass, fsName, clusterNamespace, localPath string
flag.StringVar(&storageClass, "storage-class", "", "The name of the storage class whose pvcs should be provisioned.")
flag.StringVar(&fsName, "fs-name", "", "The name of the cephfilesystems.ceph.rook.io resource which should be used for dynamic provisioning.")
flag.StringVar(&clusterNamespace, "cluster-namespace", "", "The namespace containing the cephfs.")
flag.StringVar(&localPath, "local-path", "", "The local path where the whole cephfs is mounted.")
flag.StringVar(&kubeconfig, "kubeconfig", "", "Path to a kubeconfig. Only required if out-of-cluster.")
flag.StringVar(&masterURL, "master", "", "The address of the Kubernetes API server. Overrides any value in kubeconfig. Only required if out-of-cluster.")
flag.Parse()
if storageClass == "" {
glog.Fatalf("missing storage class name.")
}
if fsName == "" {
glog.Fatalf("missing fsName.")
}
if clusterNamespace == "" {
glog.Fatalf("missing cluster-namespace.")
}
cfg, err := clientcmd.BuildConfigFromFlags(masterURL, kubeconfig)
if err != nil {
glog.Fatalf("Error building kubeconfig: %s", err.Error())
}
kubeClient, err := kubernetes.NewForConfig(cfg)
if err != nil {
glog.Fatalf("Error building kubernetes clientset: %s", err.Error())
}
kubeInformerFactory := informers.NewSharedInformerFactory(kubeClient, time.Second*30)
provisioner := NewProvisioner(kubeClient, storageClass, fsName, clusterNamespace, localPath)
controller := NewController(
kubeClient,
kubeInformerFactory.Core().V1().PersistentVolumeClaims(),
provisioner.Handle,
)
stopCh := make(chan struct{})
defer close(stopCh)
kubeInformerFactory.Start(stopCh)
controller.Run(2, stopCh)
}