forked from openshift/cluster-logging-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
230 lines (196 loc) · 7.75 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package main
import (
"context"
"flag"
"fmt"
"os"
"runtime"
"strings"
"time"
internalcontext "github.com/openshift/cluster-logging-operator/internal/api/context"
"k8s.io/apimachinery/pkg/api/errors"
"sigs.k8s.io/controller-runtime/pkg/cache"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/openshift/cluster-logging-operator/internal/metrics/dashboard"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/healthz"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"github.com/openshift/cluster-logging-operator/api/logging/v1alpha1"
observabilityv1 "github.com/openshift/cluster-logging-operator/api/observability/v1"
observabilitycontroller "github.com/openshift/cluster-logging-operator/internal/controller/observability"
log "github.com/ViaQ/logerr/v2/log/static"
apis "github.com/openshift/cluster-logging-operator/api"
"github.com/openshift/cluster-logging-operator/internal/metrics/telemetry"
"github.com/openshift/cluster-logging-operator/internal/utils"
"github.com/openshift/cluster-logging-operator/version"
apiruntime "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"
configv1 "github.com/openshift/api/config/v1"
consolev1 "github.com/openshift/api/console/v1"
consolev1alpha1 "github.com/openshift/api/console/v1alpha1"
oauth "github.com/openshift/api/oauth/v1"
routev1 "github.com/openshift/api/route/v1"
securityv1 "github.com/openshift/api/security/v1"
elasticsearch "github.com/openshift/elasticsearch-operator/apis/logging/v1"
hypershiftv1beta1 "github.com/openshift/hypershift/api/hypershift/v1beta1"
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
"sigs.k8s.io/controller-runtime/pkg/metrics"
"github.com/openshift/cluster-logging-operator/internal/controller/logfilemetricsexporter"
loggingruntime "github.com/openshift/cluster-logging-operator/internal/runtime"
)
var (
scheme = apiruntime.NewScheme()
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(apis.AddToScheme(scheme))
utilruntime.Must(elasticsearch.AddToScheme(scheme))
utilruntime.Must(routev1.AddToScheme(scheme))
utilruntime.Must(consolev1.AddToScheme(scheme))
utilruntime.Must(consolev1alpha1.AddToScheme(scheme))
utilruntime.Must(oauth.AddToScheme(scheme))
utilruntime.Must(monitoringv1.AddToScheme(scheme))
utilruntime.Must(configv1.AddToScheme(scheme))
utilruntime.Must(securityv1.AddToScheme(scheme))
utilruntime.Must(hypershiftv1beta1.AddToScheme(scheme))
utilruntime.Must(v1alpha1.AddToScheme(scheme))
utilruntime.Must(observabilityv1.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
}
func main() {
var metricsAddr string
var enableLeaderElection bool
var probeAddr string
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8686", "The address the metric endpoint binds to.")
//flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe end point binds to.")
flag.BoolVar(&enableLeaderElection, "leader-elect", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.Parse()
logger := utils.InitLogger("cluster-logging-operator")
// LOG-5136 Fixes error caused by updates to controller-runtime
ctrl.SetLogger(logger)
log.Info("starting up...",
"operator_version", version.Version,
"go_version", runtime.Version(),
"go_os", runtime.GOOS,
"go_arch", runtime.GOARCH,
)
// https://issues.redhat.com/browse/LOG-3321
cacheOptions := cache.Options{
SyncPeriod: utils.GetPtr(time.Minute * 3),
}
if watchNS := getWatchNS(); len(watchNS) > 0 {
cacheOptions.DefaultNamespaces = map[string]cache.Config{}
for _, ns := range watchNS {
cacheOptions.DefaultNamespaces[ns] = cache.Config{}
}
}
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
Metrics: metricsserver.Options{
BindAddress: metricsAddr,
},
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "b430cc2e.openshift.io",
Cache: cacheOptions,
})
if err != nil {
log.Error(err, "unable to start manager")
os.Exit(1)
}
// Clean up
defer func() {
if err := cleanUpResources(mgr.GetClient(), mgr.GetAPIReader()); err != nil {
log.V(3).Error(err, "error with resource cleanup")
}
}()
clusterVersion, clusterID, err := version.ClusterVersion(mgr.GetAPIReader())
if err != nil {
log.Error(err, "unable to retrieve the cluster version")
os.Exit(1)
}
migrateManifestResources(mgr.GetClient())
log.Info("Registering Components.")
// The Log File Metric Exporter Controller
if err = (&logfilemetricsexporter.ReconcileLogFileMetricExporter{
Client: mgr.GetClient(),
UncachedReader: mgr.GetAPIReader(),
Scheme: mgr.GetScheme(),
ClusterVersion: clusterVersion,
ClusterID: clusterID,
}).SetupWithManager(mgr); err != nil {
log.Error(err, "unable to create controller", "controller", "LogFileMetricExporter")
os.Exit(1)
}
if err = (&dashboard.ReconcileDashboards{
Client: mgr.GetClient(),
Reader: mgr.GetAPIReader(),
}).SetupWithManager(mgr); err != nil {
log.Error(err, "unable to create controller", "controller", "GrafanaDashboard")
os.Exit(1)
}
// Create initial dashboard config map on CLO install
if err = dashboard.ReconcileForDashboards(mgr.GetClient(), mgr.GetAPIReader()); err != nil {
log.Error(err, "unable to seed the initial dashboard")
os.Exit(1)
}
if err = (&observabilitycontroller.ClusterLogForwarderReconciler{
ForwarderContext: internalcontext.ForwarderContext{
Client: mgr.GetClient(),
Reader: mgr.GetAPIReader(),
ClusterVersion: clusterVersion,
ClusterID: clusterID,
},
Scheme: mgr.GetScheme(),
}).SetupWithManager(mgr); err != nil {
log.Error(err, "unable to create controller", "controller", "observability.ClusterLogForwarder")
os.Exit(1)
}
//+kubebuilder:scaffold:builder
if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
log.Error(err, "unable to set up health check")
os.Exit(1)
}
if err := mgr.AddReadyzCheck("readyz", healthz.Ping); err != nil {
log.Error(err, "unable to set up ready check")
os.Exit(1)
}
if err := telemetry.Setup(context.TODO(), mgr.GetClient(), metrics.Registry, version.Version); err != nil {
log.Error(err, "Error registering telemetry metrics")
}
log.Info("Starting the Cmd.")
// Start the Cmd
if err := mgr.Start(signals.SetupSignalHandler()); err != nil {
log.Error(err, "Manager exited non-zero")
os.Exit(1)
}
}
// getWatchNS returns the namespaces being watched by the operator. Empty means all
// - https://sdk.operatorframework.io/docs/building-operators/golang/operator-scope/#configuring-namespace-scoped-operators
func getWatchNS() []string {
OpenshiftNSEnvVar := "WATCH_NAMESPACE"
ns, found := os.LookupEnv(OpenshiftNSEnvVar)
if !found {
log.Error(fmt.Errorf("Exiting. %s must be set", OpenshiftNSEnvVar), "Failed to get watch namespace")
os.Exit(1)
}
return strings.Split(ns, ",")
}
func migrateManifestResources(k8sClient client.Client) {
log.Info("migrating resources provided by the manifest")
if err := k8sClient.Delete(context.TODO(), loggingruntime.NewPriorityClass("cluster-logging", 0, false, "")); err != nil && !errors.IsNotFound(err) {
log.V(1).Error(err, "There was an error trying to remove the old collector PriorityClass named 'cluster-logging'")
}
}
func cleanUpResources(k8sClient client.Client, apiReader client.Reader) error {
// Remove the dashboard config map
if err := dashboard.RemoveDashboardConfigMap(k8sClient, apiReader); err != nil {
return err
}
return nil
}