-
Notifications
You must be signed in to change notification settings - Fork 21
/
main.go
115 lines (97 loc) · 3.3 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
/*
* (c) Copyright IBM Corp. 2021
* (c) Copyright Instana Inc. 2021
*/
package main
import (
"flag"
"fmt"
"os"
"runtime"
"strconv"
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"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/healthz"
logf "sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
agentoperatorv1 "github.com/instana/instana-agent-operator/api/v1"
"github.com/instana/instana-agent-operator/controllers"
"github.com/instana/instana-agent-operator/version"
// +kubebuilder:scaffold:imports
)
var (
scheme = k8sruntime.NewScheme()
log = logf.Log.WithName("main")
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(agentoperatorv1.AddToScheme(scheme))
// +kubebuilder:scaffold:scheme
}
func main() {
var metricsAddr string
var probeAddr string
var enableLeaderElection bool
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8080", "The address the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
// By default disable leader-election and assume single instance gets installed. Via parameters (--leader-elect) it will be
// enabled from the Operator Deployment spec.
flag.BoolVar(
&enableLeaderElection, "leader-elect", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.",
)
// When running in debug-mode, include some more logging etc
debugMode, _ := strconv.ParseBool(os.Getenv("DEBUG_MODE"))
opts := zap.Options{
Development: debugMode,
}
opts.BindFlags(flag.CommandLine)
flag.Parse()
// Set the Logger to be used also by the controller-runtime
logf.SetLogger(zap.New(zap.UseFlagOptions(&opts)).WithName("instana"))
printVersion()
mgr, err := ctrl.NewManager(
ctrl.GetConfigOrDie(), ctrl.Options{
Metrics: metricsserver.Options{
BindAddress: metricsAddr,
},
Scheme: scheme,
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "819a9291.instana.io",
},
)
if err != nil {
log.Error(err, "Unable to start manager")
os.Exit(1)
}
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)
}
// Add our own Agent Controller to the manager
if err := controllers.Add(mgr); err != nil {
log.Error(err, "Failure setting up Instana Agent Controller")
os.Exit(1)
}
log.Info("Starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
log.Error(err, "Problem running manager")
os.Exit(1)
}
}
func printVersion() {
log.Info(fmt.Sprintf("Operator Version: %s", version.Version))
log.Info(fmt.Sprintf("Operator Git Commit SHA: %s", version.GitCommit))
log.Info(fmt.Sprintf("Go Version: %s", runtime.Version()))
log.Info(fmt.Sprintf("Go OS/Arch: %s/%s", runtime.GOOS, runtime.GOARCH))
}