-
Notifications
You must be signed in to change notification settings - Fork 21
/
main.go
155 lines (131 loc) · 4.26 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/kubernetes"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
operatorv1 "github.com/opencurve/curve-operator/api/v1"
"github.com/opencurve/curve-operator/pkg/clusterd"
"github.com/opencurve/curve-operator/pkg/controllers"
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
_ = clientgoscheme.AddToScheme(scheme)
_ = operatorv1.AddToScheme(scheme)
// +kubebuilder:scaffold:scheme
}
type CurveOptions struct {
MetricsAddr string
EnableLeaderElection bool
}
// NewCurveOptions creates a new CurveOptions with a default config
func NewCurveOptions() (*CurveOptions, error) {
return &CurveOptions{
MetricsAddr: ":8080",
EnableLeaderElection: false,
}, nil
}
func main() {
opts, err := NewCurveOptions()
if err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
cmd := &cobra.Command{
Use: "curve-operator",
Long: `The Curve-Operator is a daemon to deploy Curve and auto it on kubernetes.
It supports Curve storage to natively integrate with cloud-native environments.`,
Run: func(cmd *cobra.Command, args []string) {
setupLog.Error(opts.Run(), "failed to run curve-operator")
os.Exit(1)
},
}
opts.AddFlags(cmd.Flags())
if err := cmd.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}
}
func (opts *CurveOptions) Run() error {
ctrl.SetLogger(zap.New(zap.UseDevMode(true)))
config := ctrl.GetConfigOrDie()
clientSet, err := kubernetes.NewForConfig(config)
if err != nil {
setupLog.Error(err, "failed to create clientset")
os.Exit(1)
}
mgr, err := ctrl.NewManager(config, ctrl.Options{
Scheme: scheme,
MetricsBindAddress: opts.MetricsAddr,
Port: 9443,
LeaderElection: opts.EnableLeaderElection,
LeaderElectionID: "aa88fc6c.curve.io",
})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
context := clusterd.Context{
KubeConfig: config,
Clientset: clientSet,
Client: mgr.GetClient(),
}
if err = (controllers.NewCurveClusterReconciler(
mgr.GetClient(),
ctrl.Log.WithName("controllers").WithName("CurveCluster"),
mgr.GetScheme(),
context,
)).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "CurveCluster")
os.Exit(1)
}
if err = (controllers.NewCurvefsReconciler(
mgr.GetClient(),
ctrl.Log.WithName("controllers").WithName("Curvefs"),
mgr.GetScheme(),
context,
)).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "CurvefsCluster")
os.Exit(1)
}
if err = (&operatorv1.CurveCluster{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "CurveCluster")
os.Exit(1)
}
if err = (&operatorv1.Curvefs{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "Curvefs")
os.Exit(1)
}
// +kubebuilder:scaffold:builder
setupLog.Info("starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
return nil
}
// AddFlags adds flags to fs and binds them to options.
func (opts *CurveOptions) AddFlags(fs *pflag.FlagSet) {
fs.StringVar(&opts.MetricsAddr, "metrics-port", opts.MetricsAddr, "The address on which to advertise.")
fs.BoolVar(&opts.EnableLeaderElection, "enable-leader-election", opts.EnableLeaderElection, "Enables leader election for curve-operator master.")
}