This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
main.go
124 lines (99 loc) · 3.41 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
/*
Copyright 2020 Dynatrace LLC.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"errors"
"fmt"
"os"
"runtime"
dynatracev1alpha1 "github.com/Dynatrace/dynatrace-oneagent-operator/api/v1alpha1"
"github.com/Dynatrace/dynatrace-oneagent-operator/logger"
"github.com/Dynatrace/dynatrace-oneagent-operator/version"
"github.com/spf13/pflag"
istiov1alpha3 "istio.io/client-go/pkg/apis/networking/v1alpha3"
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"
"k8s.io/client-go/rest"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/manager"
)
var (
scheme = k8sruntime.NewScheme()
log = logger.NewDTLogger()
)
var subcmdCallbacks = map[string]func(ns string, cfg *rest.Config) (manager.Manager, error){
"operator": startOperator,
"webhook-bootstrapper": startWebhookBoostrapper,
"webhook-server": startWebhookServer,
}
var errBadSubcmd = errors.New("subcommand must be operator, webhook-bootstrapper, or webhook-server")
var (
certsDir string
certFile string
keyFile string
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(dynatracev1alpha1.AddToScheme(scheme))
utilruntime.Must(istiov1alpha3.AddToScheme(scheme))
// +kubebuilder:scaffold:scheme
}
func main() {
webhookServerFlags := pflag.NewFlagSet("webhook-server", pflag.ExitOnError)
webhookServerFlags.StringVar(&certsDir, "certs-dir", "/mnt/webhook-certs", "Directory to look certificates for.")
webhookServerFlags.StringVar(&certFile, "cert", "tls.crt", "File name for the public certificate.")
webhookServerFlags.StringVar(&keyFile, "cert-key", "tls.key", "File name for the private key.")
pflag.CommandLine.AddFlagSet(webhookServerFlags)
pflag.Parse()
ctrl.SetLogger(logger.NewDTLogger())
printVersion()
subcmd := "operator"
if args := pflag.Args(); len(args) > 0 {
subcmd = args[0]
}
subcmdFn := subcmdCallbacks[subcmd]
if subcmdFn == nil {
log.Error(errBadSubcmd, "Unknown subcommand", "command", subcmd)
os.Exit(1)
}
namespace := os.Getenv("POD_NAMESPACE")
cfg, err := config.GetConfig()
if err != nil {
log.Error(err, "")
os.Exit(1)
}
mgr, err := subcmdFn(namespace, cfg)
if err != nil {
log.Error(err, "")
os.Exit(1)
}
signalHandler := ctrl.SetupSignalHandler()
startWebhookAndBootstrapperIfDebugFlagSet(startupInfo{
cfg: cfg,
namespace: namespace,
signalHandler: signalHandler,
})
log.Info("starting manager")
if err := mgr.Start(signalHandler); 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("Go Version: %s", runtime.Version()))
log.Info(fmt.Sprintf("Go OS/Arch: %s/%s", runtime.GOOS, runtime.GOARCH))
}