-
Notifications
You must be signed in to change notification settings - Fork 96
/
main.go
278 lines (233 loc) · 9.77 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
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 (
"flag"
"os"
"sigs.k8s.io/controller-runtime/pkg/cache"
"strings"
"time"
"github.com/integr8ly/integreatly-operator/controllers/status"
k8sclient "sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/healthz"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"github.com/integr8ly/integreatly-operator/pkg/resources/k8s"
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
integreatlymetrics "github.com/integr8ly/integreatly-operator/pkg/metrics"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
customMetrics "sigs.k8s.io/controller-runtime/pkg/metrics"
v1 "github.com/openshift/api/apps/v1"
"github.com/sirupsen/logrus"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
rhmiv1alpha1 "github.com/integr8ly/integreatly-operator/apis/v1alpha1"
namespacecontroller "github.com/integr8ly/integreatly-operator/controllers/namespacelabel"
rhmicontroller "github.com/integr8ly/integreatly-operator/controllers/rhmi"
subscriptioncontroller "github.com/integr8ly/integreatly-operator/controllers/subscription"
tenantcontroller "github.com/integr8ly/integreatly-operator/controllers/tenant"
usercontroller "github.com/integr8ly/integreatly-operator/controllers/user"
"github.com/integr8ly/integreatly-operator/pkg/addon"
"github.com/integr8ly/integreatly-operator/pkg/webhooks"
// +kubebuilder:scaffold:imports
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
// Register custom metrics with the global prometheus registry
customMetrics.Registry.MustRegister(integreatlymetrics.OperatorVersion)
customMetrics.Registry.MustRegister(integreatlymetrics.RHOAMInfo)
customMetrics.Registry.MustRegister(integreatlymetrics.RHOAMVersion)
customMetrics.Registry.MustRegister(integreatlymetrics.RHOAMStatus)
customMetrics.Registry.MustRegister(integreatlymetrics.RHOAMCluster)
customMetrics.Registry.MustRegister(integreatlymetrics.ThreeScaleUserAction)
customMetrics.Registry.MustRegister(integreatlymetrics.Quota)
customMetrics.Registry.MustRegister(integreatlymetrics.TenantsSummary)
customMetrics.Registry.MustRegister(integreatlymetrics.NoActivated3ScaleTenantAccount)
customMetrics.Registry.MustRegister(integreatlymetrics.InstallationControllerReconcileDelayed)
customMetrics.Registry.MustRegister(integreatlymetrics.CustomDomain)
customMetrics.Registry.MustRegister(integreatlymetrics.ThreeScalePortals)
customMetrics.Registry.MustRegister(integreatlymetrics.RhoamStateMetric)
integreatlymetrics.OperatorVersion.Add(1)
utilruntime.Must(v1.Install(clientgoscheme.Scheme))
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(rhmiv1alpha1.AddToScheme(scheme))
utilruntime.Must(rhmiv1alpha1.AddToSchemes.AddToScheme(scheme))
utilruntime.Must(apiextensions.AddToScheme(scheme))
// +kubebuilder:scaffold:scheme
// +kubebuilder:rbac:groups=integreatly.org,resources=apimanagementtenant,verbs=watch;get;list
}
func main() {
var metricsAddr string
var enableLeaderElection bool
var probeAddr string
var addonInstanceName string
var heartbeatInterval time.Duration
flag.StringVar(&metricsAddr, "metrics-addr", ":8383", "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, "enable-leader-election", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.StringVar(&addonInstanceName, "addon-instance-name", "addon-instance", "The addon instance name the addon is reporting status to.")
flag.DurationVar(&heartbeatInterval, "heartbeat-interval", 10*time.Second, "Time between heartbeats sent to addon instance")
flag.Parse()
ctrl.SetLogger(zap.New(zap.UseDevMode(true)))
logrus.SetFormatter(&logrus.TextFormatter{
ForceColors: true,
FullTimestamp: true,
QuoteEmptyFields: false,
})
watchNamespace, err := k8s.GetWatchNamespace()
if err != nil {
setupLog.Error(err, "unable to get WatchNamespace, "+
"the manager will watch and manage resources in all namespaces")
}
// If a watch namespace is detected (i.e. operator is namespace scoped), then pass the NS to cache.Options.DefaultNamespaces
// If no watch namespace is detected (i.e. operator is cluster scoped), then pass an empty Cache object
// If sandbox then pass an empty Cache object
var managerCache = cache.Options{}
if watchNamespace != "" && !strings.Contains(watchNamespace, "sandbox") {
managerCache = cache.Options{
DefaultNamespaces: map[string]cache.Config{
watchNamespace: {},
},
}
}
var mgr ctrl.Manager
mgr, err = ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Cache: managerCache,
Scheme: scheme,
Metrics: metricsserver.Options{BindAddress: metricsAddr},
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "28185cee.integreatly.org",
})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
if err = rhmicontroller.New(mgr).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "RHMI")
os.Exit(1)
}
isSandbox := strings.Contains(watchNamespace, "sandbox")
if watchNamespace == "" || !isSandbox {
if err = namespacecontroller.New(mgr).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "Namespace")
os.Exit(1)
}
if err = usercontroller.New(mgr).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "User")
os.Exit(1)
}
}
if isSandbox {
tenantCtrl, err := tenantcontroller.New(mgr)
if err != nil {
setupLog.Error(err, "unable to create controller", "controller", "TenantController")
os.Exit(1)
}
if err = tenantCtrl.SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to setup controller", "controller", "TenantController")
os.Exit(1)
}
}
subscriptionCtrl, err := subscriptioncontroller.New(mgr)
if err != nil {
setupLog.Error(err, "unable to create controller", "controller", "Subscription")
os.Exit(1)
}
if err = subscriptionCtrl.SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to setup controller", "controller", "Subscription")
os.Exit(1)
}
// Client to use before cache is created
restConfig := ctrl.GetConfigOrDie()
restConfig.Timeout = time.Second * 10
client, err := k8sclient.New(restConfig, k8sclient.Options{
Scheme: mgr.GetScheme(),
})
if err != nil {
setupLog.Error(err, "unable to create client for checking if Addon Operator is installed", "controller", "AddonInstance")
os.Exit(1)
}
// Check is addon operator installed
addonOperatorInstalled, err := status.IsAddonOperatorInstalled(client)
if err != nil {
setupLog.Error(err, "unable to check is addon operator installed", "controller", "AddonInstance")
os.Exit(1)
}
// Only start controller if addon operator is installed and is not a sandbox install
if addonOperatorInstalled && !isSandbox {
addonInstanceStatusCtrl, err := status.New(mgr,
status.WithAddonInstanceNamespace(watchNamespace),
status.WithAddonInstanceName(addonInstanceName),
status.WithHeartbeatInterval(heartbeatInterval))
if err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AddonInstance")
os.Exit(1)
}
if err = addonInstanceStatusCtrl.SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to setup controller", "controller", "AddonInstance")
os.Exit(1)
}
}
// +kubebuilder:scaffold:builder
if err := setupWebhooks(mgr); err != nil {
setupLog.Error(err, "Error setting up webhook server")
}
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(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
func setupWebhooks(mgr ctrl.Manager) error {
decoder := admission.NewDecoder(mgr.GetScheme())
// Delete webhook for the RHMI CR that uninstalls the operator if there
// are no finalizers left
webhooks.Config.AddWebhook(webhooks.IntegreatlyWebhook{
Name: "rhmi-delete",
Rule: webhooks.NewRule().
OneResource("integreatly.org", "v1alpha1", "rhmis").
ForDelete().
NamespacedScope(),
Register: webhooks.AdmissionWebhookRegister{
Type: webhooks.ValidatingType,
Path: "/delete-rhmi",
Hook: &admission.Webhook{
Handler: addon.NewDeleteRHMIHandler(mgr.GetConfig(), mgr.GetScheme(), decoder),
},
},
})
// The webhooks feature can't work when the operator runs locally, as it
// needs to be accessible by kubernetes and depends on the TLS certificates
// being mounted
webhooks.Config.Enabled = k8s.IsRunInCluster()
if err := webhooks.Config.SetupServer(mgr); err != nil {
return err
}
return nil
}