-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
210 lines (187 loc) · 6.74 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
package main
import (
"flag"
"fmt"
"os"
"strconv"
// 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"
"k8s.io/client-go/rest"
"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/cache"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"sigs.k8s.io/controller-runtime/pkg/metrics"
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
synv1alpha1 "github.com/projectsyn/lieutenant-operator/api/v1alpha1"
"github.com/projectsyn/lieutenant-operator/controllers"
operatorMetrics "github.com/projectsyn/lieutenant-operator/metrics"
//+kubebuilder:scaffold:imports
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
const (
// WatchNamespaceEnvVar is the constant for env variable WATCH_NAMESPACE
// which specifies the Namespace to watch.
// An empty value means the operator is running with cluster scope.
watchNamespaceEnvVar = "WATCH_NAMESPACE"
// createSAEnvVar is the constant for the env variable which indicates
// whether to create ServiceAccount token secrets
createSATokenEnvVar = "LIEUTENANT_CREATE_SERVICEACCOUNT_TOKEN_SECRET"
// createSAEnvVar is the constant for the env variable which indicates
// the default creation policy for git repositories
defaultCreationPolicy = "DEFAULT_CREATION_POLICY"
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(synv1alpha1.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
}
func main() {
ctx := ctrl.SetupSignalHandler()
var metricsAddr string
var enableLeaderElection bool
var probeAddr string
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.")
flag.BoolVar(&enableLeaderElection, "leader-elect", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
opts := zap.Options{
Development: true,
}
opts.BindFlags(flag.CommandLine)
flag.Parse()
ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
watchNamespace, err := getWatchNamespace()
if err != nil {
setupLog.Error(err, "unable to get WatchNamespace, "+
"the manager will watch and manage resources in all namespaces")
}
createSATokenSecret, err := getCreateSATokenSecret()
if err != nil {
setupLog.Error(err, "unable to get TokenSecret flag, "+
"the operator won't manage ServiceAccount token secrets.")
}
creationPolicy := getDefaultCreationPolicy()
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
Metrics: server.Options{
BindAddress: metricsAddr,
},
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "9b76ddd4.syn.tools",
// Limit the manager to only watch the given namespace
NewCache: func(config *rest.Config, opts cache.Options) (cache.Cache, error) {
opts.DefaultNamespaces = map[string]cache.Config{
watchNamespace: {},
}
return cache.New(config, opts)
},
})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
if err := mgr.GetFieldIndexer().IndexField(ctx, &synv1alpha1.Cluster{}, "spec.tenantRef.name", func(o client.Object) []string {
cluster := o.(*synv1alpha1.Cluster)
return []string{cluster.Spec.TenantRef.Name}
}); err != nil {
setupLog.Error(err, "unable to create tenantRef field indexer for Cluster")
os.Exit(1)
}
metrics.Registry.MustRegister(&operatorMetrics.CompileMetaCollector{
Client: mgr.GetClient(),
Namespace: watchNamespace,
})
metrics.Registry.MustRegister(&operatorMetrics.ClusterInfoCollector{
Client: mgr.GetClient(),
Namespace: watchNamespace,
})
metrics.Registry.MustRegister(&operatorMetrics.TenantInfoCollector{
Client: mgr.GetClient(),
Namespace: watchNamespace,
})
if err = (&controllers.ClusterReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
CreateSATokenSecret: createSATokenSecret,
DefaultCreationPolicy: creationPolicy,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "Cluster")
os.Exit(1)
}
if err = (&controllers.GitRepoReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
DefaultCreationPolicy: creationPolicy,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "GitRepo")
os.Exit(1)
}
if err = (&controllers.TenantReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
CreateSATokenSecret: createSATokenSecret,
DefaultCreationPolicy: creationPolicy,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "Tenant")
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)
}
setupLog.Info("starting manager")
if err := mgr.Start(ctx); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
// getWatchNamespace returns the Namespace the operator should be watching for changes
func getWatchNamespace() (string, error) {
ns, found := os.LookupEnv(watchNamespaceEnvVar)
if !found {
return "", fmt.Errorf("environment variable '%s' not found", watchNamespaceEnvVar)
}
return ns, nil
}
// getCreateSATokenSecret returns a boolean indicating whether the operator should manage ServiceAccount token secrets
func getCreateSATokenSecret() (bool, error) {
value, found := os.LookupEnv(createSATokenEnvVar)
if !found {
return false, fmt.Errorf("environment variable '%s' not found", createSATokenEnvVar)
}
create, err := strconv.ParseBool(value)
if err != nil {
return false, fmt.Errorf("unable to parse '%s': %v", value, err)
}
return create, nil
}
// getDefaultCreationPolicy returns to fallback creation policy for git repositories
func getDefaultCreationPolicy() synv1alpha1.CreationPolicy {
p, found := os.LookupEnv(defaultCreationPolicy)
if !found {
return synv1alpha1.CreatePolicy
}
cp := synv1alpha1.CreationPolicy(p)
switch cp {
case synv1alpha1.CreatePolicy, synv1alpha1.AdoptPolicy:
return cp
default:
return synv1alpha1.CreatePolicy
}
}