-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.go
More file actions
161 lines (138 loc) · 5.32 KB
/
main.go
File metadata and controls
161 lines (138 loc) · 5.32 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
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
156
157
158
159
160
161
// SPDX-FileCopyrightText: 2020 SAP SE or an SAP affiliate company
// SPDX-License-Identifier: Apache-2.0
package main
import (
"flag"
"fmt"
"os"
"strings"
_ "go.uber.org/automaxprocs"
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
// to ensure that exec-entrypoint and run can make use of them.
_ "k8s.io/client-go/plugin/pkg/client/auth"
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
"github.com/sapcc/go-api-declarations/bininfo"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/config"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"github.com/sapcc/absent-metrics-operator/controllers"
//+kubebuilder:scaffold:imports
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(monitoringv1.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
}
func main() {
var (
debug bool
metricsAddr string
probeAddr string
enableLeaderElection bool
keepLabel labelsMap
prometheusRuleName string
)
bininfo.HandleVersionArgument()
flag.BoolVar(&debug, "debug", false, "Alias for '-zap-devel' flag.")
// Port `9659` has been allocated for absent metrics operator: https://github.com/prometheus/prometheus/wiki/Default-port-allocations
flag.StringVar(&metricsAddr, "metrics-bind-address", ":9659", "The address the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
flag.StringVar(&prometheusRuleName, "prom-rule-name", controllers.DefaultAbsencePromRuleNameTemplate,
"The template to be used as the name of generated PrometheusRule(s) and consequently aggregating generated absence alert rules.")
flag.BoolVar(&enableLeaderElection, "leader-elect", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.Var(&keepLabel, "keep-labels", "A comma-separated list of labels to retain from the original alert rule. "+
fmt.Sprintf("(default '%s,%s,%s')", controllers.LabelSupportGroup, controllers.LabelTier, controllers.LabelService))
opts := zap.Options{}
opts.BindFlags(flag.CommandLine)
flag.Parse()
// Enable debug mode if `-debug` flag is provided.
if debug {
opts.Development = true
}
ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
// Set default value for '-keep-labels' flag.
if len(keepLabel) == 0 {
keepLabel = labelsMap{
controllers.LabelSupportGroup: true,
controllers.LabelTier: true,
controllers.LabelService: true,
}
}
prometheusRuleNameGen, err := controllers.CreateAbsencePromRuleNameGenerator(prometheusRuleName)
if err != nil {
setupLog.Error(err, "unable to parse PrometheusRule name template", "prom-rule-name", prometheusRuleName)
os.Exit(1)
}
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
Metrics: metricsserver.Options{
BindAddress: metricsAddr,
},
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "absent-metrics-operator.cloud.sap",
Controller: config.Controller{MaxConcurrentReconciles: 8}})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
controllers.RegisterMetrics()
if err = (&controllers.PrometheusRuleReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
Log: ctrl.Log.WithName("controller").WithName("prometheusrule"),
KeepLabel: controllers.KeepLabel(keepLabel),
PrometheusRuleName: prometheusRuleNameGen,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "PrometheusRule")
os.Exit(1)
}
//+kubebuilder:scaffold:builder
if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
setupLog.Error(err, "unable to set up health check")
os.Exit(1)
}
if err := mgr.AddReadyzCheck("readyz", healthz.Ping); err != nil {
setupLog.Error(err, "unable to set up ready check")
os.Exit(1)
}
version := bininfo.VersionOr("dev")
commit := bininfo.CommitOr("unknown")
date := bininfo.BuildDateOr("now")
setupLog.Info("starting manager", "version", version, "git-commit", commit, "build-date", date)
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
// labelsMap type is a wrapper around controllers.KeepLabel. It is used for the
// `--keep-labels` flag to convert a comma-separated string into a map.
type labelsMap controllers.KeepLabel
// String implements the flag.Value interface.
func (lm labelsMap) String() string {
list := make([]string, 0, len(lm))
for k := range lm {
list = append(list, k)
}
return strings.Join(list, ",")
}
// Set implements the flag.Value interface.
func (lm *labelsMap) Set(in string) error {
labels := make(labelsMap)
for v := range strings.SplitSeq(in, ",") {
labels[strings.TrimSpace(v)] = true
}
*lm = labels
return nil
}