-
Notifications
You must be signed in to change notification settings - Fork 71
/
main.go
387 lines (338 loc) · 12.4 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
Copyright 2021.
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"
"encoding/json"
"flag"
"fmt"
"os"
configv1 "github.com/openshift/api/config/v1"
routev1 "github.com/openshift/api/route/v1"
security "github.com/openshift/api/security/v1"
monitor "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
velerov1 "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
appsv1 "k8s.io/api/apps/v1"
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/client-go/discovery"
"k8s.io/client-go/kubernetes"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
// 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"
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"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"sigs.k8s.io/controller-runtime/pkg/webhook"
//+kubebuilder:scaffold:imports
oadpv1alpha1 "github.com/openshift/oadp-operator/api/v1alpha1"
"github.com/openshift/oadp-operator/controllers"
"github.com/openshift/oadp-operator/pkg/common"
"github.com/openshift/oadp-operator/pkg/leaderelection"
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
const (
// WebIdentityTokenPath mount present on operator CSV
WebIdentityTokenPath = "/var/run/secrets/openshift/serviceaccount/token"
// CloudCredentials API constants
CloudCredentialGroupVersion = "cloudcredential.openshift.io/v1"
CloudCredentialsCRDName = "credentialsrequests"
// Pod security admission (PSA) labels
psaLabelPrefix = "pod-security.kubernetes.io/"
enforceLabel = psaLabelPrefix + "enforce"
auditLabel = psaLabelPrefix + "audit"
warnLabel = psaLabelPrefix + "warn"
privileged = "privileged"
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(oadpv1alpha1.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
}
func main() {
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)))
kubeconf := ctrl.GetConfigOrDie()
// Get LeaderElection configs
leConfig := leaderelection.GetLeaderElectionConfig(kubeconf, enableLeaderElection)
watchNamespace, err := getWatchNamespace()
if err != nil {
setupLog.Error(err, "unable to get WatchNamespace, "+
"the manager will watch and manage resources in all namespaces")
}
clientset, err := kubernetes.NewForConfig(kubeconf)
if err != nil {
setupLog.Error(err, "problem getting client")
os.Exit(1)
}
// setting privileged pod security labels to operator ns
err = addPodSecurityPrivilegedLabels(watchNamespace, clientset)
if err != nil {
setupLog.Error(err, "error setting privileged pod security labels to operator namespace")
os.Exit(1)
}
// check if this is standardized STS workflow via OLM and CCO
if common.CCOWorkflow() {
setupLog.Info("AWS Role ARN specified by the user, following standardized STS workflow")
// ROLEARN env var is set via operator subscription
roleARN := os.Getenv("ROLEARN")
setupLog.Info("getting role ARN", "role ARN =", roleARN)
// check if cred request API exists in the cluster before creating a cred request
setupLog.Info("Checking if credentialsrequest CRD exists in the cluster")
credReqCRDExists, err := DoesCRDExist(CloudCredentialGroupVersion, CloudCredentialsCRDName, kubeconf)
if err != nil {
setupLog.Error(err, "problem checking the existence of CredentialRequests CRD")
os.Exit(1)
}
if credReqCRDExists {
// create cred request
setupLog.Info(fmt.Sprintf("Creating credentials request for role: %s, and WebIdentityTokenPath: %s", roleARN, WebIdentityTokenPath))
if err := CreateCredRequest(roleARN, WebIdentityTokenPath, watchNamespace, kubeconf); err != nil {
if !errors.IsAlreadyExists(err) {
setupLog.Error(err, "unable to create credRequest")
os.Exit(1)
}
}
}
}
mgr, err := ctrl.NewManager(kubeconf, ctrl.Options{
Scheme: scheme,
Metrics: metricsserver.Options{
BindAddress: metricsAddr,
},
WebhookServer: &webhook.DefaultServer{
Options: webhook.Options{
Port: 9443,
},
},
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaseDuration: &leConfig.LeaseDuration.Duration,
RenewDeadline: &leConfig.RenewDeadline.Duration,
RetryPeriod: &leConfig.RetryPeriod.Duration,
LeaderElectionID: "oadp.openshift.io",
Cache: cache.Options{
DefaultNamespaces: map[string]cache.Config{
watchNamespace: {},
},
},
})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
// Setup scheme for OCP resources
if err := monitor.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add OpenShift monitoring APIs to scheme")
os.Exit(1)
}
if err := security.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add OpenShift security APIs to scheme")
os.Exit(1)
}
if err := routev1.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add OpenShift route API to scheme")
os.Exit(1)
}
if err := velerov1.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add Velero APIs to scheme")
os.Exit(1)
}
if err := appsv1.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add Kubernetes APIs to scheme")
os.Exit(1)
}
if err := v1.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add Kubernetes API extensions to scheme")
os.Exit(1)
}
if err := configv1.AddToScheme(mgr.GetScheme()); err != nil {
setupLog.Error(err, "unable to add OpenShift configuration API to scheme")
os.Exit(1)
}
dpaClientScheme := runtime.NewScheme()
utilruntime.Must(oadpv1alpha1.AddToScheme(dpaClientScheme))
utilruntime.Must(appsv1.AddToScheme(dpaClientScheme))
dpaClient, err := client.New(kubeconf, client.Options{
Scheme: dpaClientScheme,
})
if err != nil {
setupLog.Error(err, "unable to create Kubernetes client")
os.Exit(1)
}
if err = (&controllers.DPAReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
EventRecorder: mgr.GetEventRecorderFor("DPA-controller"),
ClusterWideClient: dpaClient,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "DataProtectionApplication")
os.Exit(1)
}
if err = (&controllers.BucketReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
EventRecorder: mgr.GetEventRecorderFor("bucket-controller"),
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "Bucket")
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(ctrl.SetupSignalHandler()); 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) {
// 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.
var watchNamespaceEnvVar = "WATCH_NAMESPACE"
ns, found := os.LookupEnv(watchNamespaceEnvVar)
if !found {
return "", fmt.Errorf("%s must be set", watchNamespaceEnvVar)
}
return ns, nil
}
// setting Pod security admission (PSA) labels to privileged in OADP operator namespace
func addPodSecurityPrivilegedLabels(watchNamespaceName string, clientset kubernetes.Interface) error {
setupLog.Info("patching operator namespace with Pod security admission (PSA) labels to privileged")
if len(watchNamespaceName) == 0 {
return fmt.Errorf("cannot patch operator namespace with PSA labels to privileged, watchNamespaceName is empty")
}
nsPatch, err := json.Marshal(map[string]interface{}{
"metadata": map[string]interface{}{
"labels": map[string]string{
enforceLabel: privileged,
auditLabel: privileged,
warnLabel: privileged,
},
},
})
if err != nil {
setupLog.Error(err, "problem marshalling patches")
return err
}
_, err = clientset.CoreV1().Namespaces().Patch(context.TODO(), watchNamespaceName, types.StrategicMergePatchType, nsPatch, metav1.PatchOptions{})
if err != nil {
setupLog.Error(err, "problem patching operator namespace with PSA labels to privileged")
return err
}
return nil
}
func DoesCRDExist(CRDGroupVersion, CRDName string, kubeconf *rest.Config) (bool, error) {
discoveryClient, err := discovery.NewDiscoveryClientForConfig(kubeconf)
if err != nil {
return false, err
}
resources, err := discoveryClient.ServerPreferredResources()
if err != nil {
return false, err
}
discoveryResult := false
for _, resource := range resources {
if resource.GroupVersion == CRDGroupVersion {
for _, crd := range resource.APIResources {
if crd.Name == CRDName {
discoveryResult = true
break
}
}
}
}
return discoveryResult, nil
}
// CreateCredRequest WITP : WebIdentityTokenPath
func CreateCredRequest(roleARN string, WITP string, secretNS string, kubeconf *rest.Config) error {
clientInstance, err := client.New(kubeconf, client.Options{})
if err != nil {
setupLog.Error(err, "unable to create client")
}
// Extra deps were getting added and existing ones were getting upgraded when the CloudCredentials API was imported
// This caused updates to go.mod and started resulting in operator build failures due to incompatibility with the existing velero deps
// Hence for now going via the unstructured route
credRequest := &unstructured.Unstructured{
Object: map[string]interface{}{
"apiVersion": "cloudcredential.openshift.io/v1",
"kind": "CredentialsRequest",
"metadata": map[string]interface{}{
"name": "oadp-aws-credentials-request",
"namespace": "openshift-cloud-credential-operator",
},
"spec": map[string]interface{}{
"secretRef": map[string]interface{}{
"name": "cloud-credentials",
"namespace": secretNS,
},
"serviceAccountNames": []interface{}{
common.OADPOperatorServiceAccount,
},
"providerSpec": map[string]interface{}{
"apiVersion": "cloudcredential.openshift.io/v1",
"kind": "AWSProviderSpec",
"statementEntries": []interface{}{
map[string]interface{}{
"effect": "Allow",
"action": []interface{}{
"s3:*",
},
"resource": "arn:aws:s3:*:*:*",
},
},
"stsIAMRoleARN": roleARN,
},
"cloudTokenPath": WITP,
},
},
}
if err := clientInstance.Create(context.Background(), credRequest); err != nil {
setupLog.Error(err, "unable to create credentials request resource")
}
setupLog.Info("Custom resource credentialsrequest created successfully")
return nil
}