-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
99 lines (85 loc) · 2.69 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
/*
* © 2023 Snyk Limited
*
* 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 (
"context"
"flag"
"fmt"
"os"
"github.com/snyk/kubernetes-scanner/build"
"github.com/snyk/kubernetes-scanner/internal/backend"
"github.com/snyk/kubernetes-scanner/internal/config"
"github.com/snyk/kubernetes-scanner/internal/controller"
"github.com/snyk/kubernetes-scanner/internal/retry"
"github.com/snyk/kubernetes-scanner/licenses"
_ "k8s.io/client-go/plugin/pkg/client/auth"
"k8s.io/klog/v2"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
ctrlmetrics "sigs.k8s.io/controller-runtime/pkg/metrics"
)
func main() {
var (
printVersion = flag.Bool("version", false, "print the version of the kubernetes-scanner and exit")
configFile = flag.String("config", "/etc/kubernetes-scanner/config.yaml", "defines the location of the config file")
showLicenses = flag.Bool("licenses", false, "show license information")
)
flag.Parse()
switch {
case *printVersion:
fmt.Println(build.Version())
case *showLicenses:
os.Exit(licenses.Print())
default:
os.Exit(runController(*configFile))
}
}
func runController(configFile string) (code int) {
zapOpts := []zap.Opts{}
cfg, err := config.Read(configFile)
if err != nil {
ctrl.SetLogger(zap.New(zapOpts...))
ctrl.Log.Error(err, "error reading config file")
return 1
}
if level, _ := cfg.Logging.ZapLevel(); level != nil {
zapOpts = append(zapOpts, zap.Level(level))
}
logger := zap.New(zapOpts...)
ctrl.SetLogger(logger)
klog.SetLogger(logger)
backend := backend.New(cfg.ClusterName, cfg.Egress, ctrlmetrics.Registry)
err = retry.Retry(ctrl.Log, retry.Seconds(5, 5), func() error {
ctrl.Log.Info("sanity checking backend")
return backend.SanityCheck(context.Background())
})
if err != nil {
ctrl.Log.Error(err, "sanity check failed")
return 1
}
ctrl.Log.Info("backend sanity check successful")
mgr, err := controller.New(cfg, backend)
if err != nil {
ctrl.Log.Error(err, "error setting up controller")
return 1
}
ctrl.Log.Info("starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
ctrl.Log.Error(err, "error running manager")
return 1
}
return 0
}