-
Notifications
You must be signed in to change notification settings - Fork 73
/
main.go
153 lines (132 loc) · 5.19 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
package main
import (
"flag"
"fmt"
"os"
"runtime"
"time"
"github.com/go-logr/logr"
blubr "github.com/mattermost/blubr"
"github.com/mattermost/mattermost-operator/controllers/mattermost/clusterinstallation"
"github.com/mattermost/mattermost-operator/controllers/mattermost/mattermost"
"github.com/mattermost/mattermost-operator/controllers/mattermost/mattermostrestoredb"
mysqlv1alpha1 "github.com/mattermost/mattermost-operator/pkg/database/mysql_operator/v1alpha1"
"github.com/mattermost/mattermost-operator/pkg/resources"
v1beta1Minio "github.com/minio/minio-operator/pkg/apis/miniocontroller/v1beta1"
"github.com/sirupsen/logrus"
"github.com/vrischmann/envconfig"
k8sruntime "k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
ctrl "sigs.k8s.io/controller-runtime"
logf "sigs.k8s.io/controller-runtime/pkg/log"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
mattermostcomv1alpha1 "github.com/mattermost/mattermost-operator/apis/mattermost/v1alpha1"
mmv1beta "github.com/mattermost/mattermost-operator/apis/mattermost/v1beta1"
// +kubebuilder:scaffold:imports
)
var (
scheme = k8sruntime.NewScheme()
)
// Change below variables to serve metrics on different host or port.
// Or use "metrics-addr" flag
var (
// metricsHost specifies host to bind to for serving prometheus metrics
metricsHost = "0.0.0.0"
// metricsPort specifies port to bind to for serving prometheus metrics
metricsPort int32 = 8383
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(mattermostcomv1alpha1.AddToScheme(scheme))
utilruntime.Must(mmv1beta.AddToScheme(scheme))
// +kubebuilder:scaffold:scheme
utilruntime.Must(v1beta1Minio.AddToScheme(scheme))
utilruntime.Must(mysqlv1alpha1.SchemeBuilder.AddToScheme(scheme))
}
type Config struct {
MaxReconcilingInstallations int `envconfig:"default=20"`
RequeueOnLimitDelay time.Duration `envconfig:"default=20s"`
MaxReconcileConcurrency int `envconfig:"default=1"`
}
func (c Config) String() string {
return fmt.Sprintf(
"MaxReconcilingInstallations=%d RequeueOnLimitDelay=%s MaxReconcileConcurrency=%d",
c.MaxReconcilingInstallations, c.RequeueOnLimitDelay, c.MaxReconcileConcurrency,
)
}
func main() {
var metricsAddr string
var enableLeaderElection bool
flag.StringVar(&metricsAddr, "metrics-addr", fmt.Sprintf("%s:%d", metricsHost, metricsPort), "The address the metric endpoint binds to.")
flag.BoolVar(&enableLeaderElection, "enable-leader-election", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.Parse()
// Setup logging.
// This logger wraps logrus in a 'logr.Logger' interface. This is required
// for the deferred logging required by the various operator packages.
logSink := blubr.InitLogger(logrus.NewEntry(logrus.New()))
logSink = logSink.WithName("opr")
logger := logr.New(logSink)
logf.SetLogger(logger)
ctrl.SetLogger(logger)
logger.Info(fmt.Sprintf("Go Version: %s", runtime.Version()))
logger.Info(fmt.Sprintf("Go OS/Arch: %s/%s", runtime.GOOS, runtime.GOARCH))
var config Config
err := envconfig.Init(&config)
if err != nil {
logger.Error(err, "Unable to read environment configuration")
os.Exit(1)
}
logger.Info("Loaded Operator env config", "config", config.String())
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
Metrics: metricsserver.Options{
BindAddress: metricsAddr,
},
LeaderElection: enableLeaderElection,
LeaderElectionID: "b78a986e.mattermost.com",
})
if err != nil {
logger.Error(err, "Unable to start manager")
os.Exit(1)
}
logger.Info("Registering Components")
if err = (&clusterinstallation.ClusterInstallationReconciler{
Client: mgr.GetClient(),
NonCachedAPIReader: mgr.GetAPIReader(),
Log: ctrl.Log.WithName("controllers").WithName("ClusterInstallation"),
Scheme: mgr.GetScheme(),
MaxReconciling: config.MaxReconcilingInstallations,
RequeueOnLimitDelay: config.RequeueOnLimitDelay,
Resources: resources.NewResourceHelper(mgr.GetClient(), mgr.GetScheme()),
}).SetupWithManager(mgr); err != nil {
logger.Error(err, "Unable to create controller", "controller", "ClusterInstallation")
os.Exit(1)
}
if err = (&mattermostrestoredb.MattermostRestoreDBReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("MattermostRestoreDB"),
Scheme: mgr.GetScheme(),
}).SetupWithManager(mgr); err != nil {
logger.Error(err, "Unable to create controller", "controller", "MattermostRestoreDB")
os.Exit(1)
}
if err = mattermost.NewMattermostReconciler(
mgr,
config.MaxReconcilingInstallations,
config.RequeueOnLimitDelay,
).
SetupWithManager(mgr, config.MaxReconcileConcurrency); err != nil {
logger.Error(err, "Unable to create controller", "controller", "Mattermost")
os.Exit(1)
}
// +kubebuilder:scaffold:builder
logger.Info("Starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
logger.Error(err, "Problem running manager")
os.Exit(1)
}
}