forked from mattermost/mattermost-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
137 lines (118 loc) · 4.58 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
package main
import (
"flag"
"fmt"
"os"
"runtime"
"time"
"github.com/mattermost/mattermost-operator/controllers/mattermost/clusterinstallation"
"github.com/mattermost/mattermost-operator/controllers/mattermost/mattermost"
"github.com/mattermost/mattermost-operator/controllers/mattermost/mattermostrestoredb"
"github.com/mattermost/mattermost-operator/pkg/resources"
blubr "github.com/mattermost/blubr"
v1beta1Minio "github.com/minio/minio-operator/pkg/apis/miniocontroller/v1beta1"
v1alpha1MySQL "github.com/presslabs/mysql-operator/pkg/apis/mysql/v1alpha1"
"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"
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(v1alpha1MySQL.SchemeBuilder.AddToScheme(scheme))
}
type Config struct {
MaxReconcilingInstallations int `envconfig:"default=20"`
RequeueOnLimitDelay time.Duration `envconfig:"default=20s"`
}
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.
logger := blubr.InitLogger()
logger = logger.WithName("opr")
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)
}
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
MetricsBindAddress: 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); 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)
}
}