-
Notifications
You must be signed in to change notification settings - Fork 185
/
Copy pathstoragecluster_controller.go
298 lines (272 loc) · 10.4 KB
/
storagecluster_controller.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
package storagecluster
import (
"context"
"fmt"
"os"
"reflect"
"github.com/go-logr/logr"
"github.com/google/go-cmp/cmp"
volumesnapshotv1 "github.com/kubernetes-csi/external-snapshotter/client/v8/apis/volumesnapshot/v1"
nbv1 "github.com/noobaa/noobaa-operator/v5/pkg/apis/noobaa/v1alpha1"
routev1 "github.com/openshift/api/route/v1"
templatev1 "github.com/openshift/api/template/v1"
conditionsv1 "github.com/openshift/custom-resource-status/conditions/v1"
"github.com/operator-framework/operator-lib/conditions"
ocsclientv1a1 "github.com/red-hat-storage/ocs-client-operator/api/v1alpha1"
ocsv1 "github.com/red-hat-storage/ocs-operator/api/v4/v1"
ocsv1alpha1 "github.com/red-hat-storage/ocs-operator/api/v4/v1alpha1"
"github.com/red-hat-storage/ocs-operator/v4/controllers/util"
"github.com/red-hat-storage/ocs-operator/v4/controllers/webhook"
cephv1 "github.com/rook/rook/pkg/apis/ceph.rook.io/v1"
admrv1 "k8s.io/api/admissionregistration/v1"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
storagev1 "k8s.io/api/storage/v1"
extv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/builder"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/event"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
ctrlwebhook "sigs.k8s.io/controller-runtime/pkg/webhook"
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
)
var (
log = ctrl.Log.WithName("controllers").WithName("StorageCluster")
)
func (r *StorageClusterReconciler) initializeImageVars() error {
r.images.Ceph = os.Getenv("CEPH_IMAGE")
r.images.NooBaaCore = os.Getenv("NOOBAA_CORE_IMAGE")
r.images.NooBaaDB = os.Getenv("NOOBAA_DB_IMAGE")
r.images.OCSMetricsExporter = os.Getenv("OCS_METRICS_EXPORTER_IMAGE")
r.images.KubeRBACProxy = os.Getenv("KUBE_RBAC_PROXY_IMAGE")
if r.images.Ceph == "" {
err := fmt.Errorf("CEPH_IMAGE environment variable not found")
r.Log.Error(err, "Missing CEPH_IMAGE environment variable for ocs initialization.")
return err
} else if r.images.NooBaaCore == "" {
err := fmt.Errorf("NOOBAA_CORE_IMAGE environment variable not found")
r.Log.Error(err, "Missing NOOBAA_CORE_IMAGE environment variable for ocs initialization.")
return err
} else if r.images.NooBaaDB == "" {
err := fmt.Errorf("NOOBAA_DB_IMAGE environment variable not found")
r.Log.Error(err, "Missing NOOBAA_DB_IMAGE environment variable for ocs initialization.")
return err
} else if r.images.OCSMetricsExporter == "" {
err := fmt.Errorf("OCS_METRICS_EXPORTER_IMAGE environment variable not found")
r.Log.Error(err, "Missing OCS_METRICS_EXPORTER_IMAGE environment variable for ocs initialization.")
return err
} else if r.images.KubeRBACProxy == "" {
err := fmt.Errorf("KUBE_RBAC_PROXY_IMAGE environment variable not found")
r.Log.Error(err, "Missing KUBE_RBAC_PROXY_IMAGE environment variable for ocs initialization.")
return err
}
return nil
}
// ImageMap holds mapping information between component image name and the image url
type ImageMap struct {
Ceph string
NooBaaCore string
NooBaaDB string
OCSMetricsExporter string
KubeRBACProxy string
}
// StorageClusterReconciler reconciles a StorageCluster object
// nolint:revive
type StorageClusterReconciler struct {
client.Client
ctx context.Context
Log logr.Logger
Scheme *runtime.Scheme
conditions []conditionsv1.Condition
phase string
nodeCount int
images ImageMap
recorder *util.EventReporter
OperatorCondition conditions.Condition
IsNoobaaStandalone bool
IsMultipleStorageClusters bool
clusters *util.Clusters
OperatorNamespace string
AvailableCrds map[string]bool
}
// SetupWithManager sets up a controller with manager
func (r *StorageClusterReconciler) SetupWithManager(mgr ctrl.Manager) error {
if err := r.initializeImageVars(); err != nil {
return err
}
r.recorder = util.NewEventReporter(mgr.GetEventRecorderFor("controller_storagecluster"))
// Compose a predicate that is an OR of the specified predicates
scPredicate := util.ComposePredicates(
predicate.GenerationChangedPredicate{},
util.MetadataChangedPredicate{},
)
pvcPredicate := predicate.Funcs{
DeleteFunc: func(e event.DeleteEvent) bool {
// Evaluates to false if the object has been confirmed deleted.
return !e.DeleteStateUnknown
},
}
storageConsumerStatusPredicate := predicate.Funcs{
UpdateFunc: func(e event.UpdateEvent) bool {
if e.ObjectOld == nil || e.ObjectNew == nil {
return false
}
oldObj := e.ObjectOld.(*ocsv1alpha1.StorageConsumer)
newObj := e.ObjectNew.(*ocsv1alpha1.StorageConsumer)
return !reflect.DeepEqual(oldObj.Status.Client, newObj.Status.Client)
},
}
enqueueStorageClusterRequest := handler.EnqueueRequestsFromMapFunc(
func(context context.Context, obj client.Object) []reconcile.Request {
// Get the StorageCluster objects
scList := &ocsv1.StorageClusterList{}
err := r.Client.List(context, scList, &client.ListOptions{Namespace: obj.GetNamespace()})
if err != nil {
r.Log.Error(err, "Unable to list StorageCluster objects")
return []reconcile.Request{}
}
// Return name and namespace of the StorageClusters object
request := []reconcile.Request{}
for _, sc := range scList.Items {
request = append(request, reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: sc.Namespace,
Name: sc.Name,
},
})
}
return request
},
)
noobaaIgnoreTimeUpdatePredicate := predicate.Funcs{
UpdateFunc: func(e event.UpdateEvent) bool {
if e.ObjectOld == nil || e.ObjectNew == nil {
return false
}
oldObj := e.ObjectOld.(*nbv1.NooBaa)
newObj := e.ObjectNew.(*nbv1.NooBaa)
ignorePaths := func(path cmp.Path) bool {
switch path.String() {
case "ObjectMeta.ManagedFields",
"ObjectMeta.ResourceVersion",
"Status.Conditions.LastHeartbeatTime",
"Status.Conditions.LastTransitionTime":
return true
}
return false
}
diff := cmp.Diff(
oldObj, newObj,
cmp.FilterPath(ignorePaths, cmp.Ignore()),
)
return diff != ""
},
}
cephClusterIgnoreTimeUpdatePredicate := predicate.Funcs{
UpdateFunc: func(e event.UpdateEvent) bool {
if e.ObjectOld == nil || e.ObjectNew == nil {
return false
}
oldObj := e.ObjectOld.(*cephv1.CephCluster)
newObj := e.ObjectNew.(*cephv1.CephCluster)
ignorePaths := func(path cmp.Path) bool {
switch path.String() {
case "ObjectMeta.ManagedFields",
"ObjectMeta.ResourceVersion",
"Status.CephStatus.LastChecked",
"Status.CephStatus.Capacity.LastUpdated",
"Status.Conditions.LastHeartbeatTime",
"Status.Conditions.LastTransitionTime":
return true
}
return false
}
diff := cmp.Diff(
oldObj, newObj,
cmp.FilterPath(ignorePaths, cmp.Ignore()),
)
return diff != ""
},
}
ocsMutatingWebhookPredicate := builder.WithPredicates(
predicate.NewPredicateFuncs(
func(obj client.Object) bool {
return obj.GetName() == OcsMutatingWebhookConfigName
},
),
)
build := ctrl.NewControllerManagedBy(mgr).
For(&ocsv1.StorageCluster{}, builder.WithPredicates(scPredicate)).
Owns(&cephv1.CephCluster{}, builder.WithPredicates(cephClusterIgnoreTimeUpdatePredicate)).
Owns(&cephv1.CephBlockPool{}).
Owns(&cephv1.CephFilesystem{}).
Owns(&cephv1.CephFilesystemSubVolumeGroup{}).
Owns(&cephv1.CephNFS{}).
Owns(&cephv1.CephObjectStore{}).
Owns(&cephv1.CephObjectStoreUser{}).
Owns(&cephv1.CephRBDMirror{}).
Owns(&corev1.PersistentVolumeClaim{}, builder.WithPredicates(pvcPredicate)).
Owns(&appsv1.Deployment{}, builder.WithPredicates(predicate.GenerationChangedPredicate{})).
Owns(&corev1.Service{}, builder.WithPredicates(predicate.GenerationChangedPredicate{})).
Owns(&corev1.ConfigMap{}, builder.MatchEveryOwner, builder.WithPredicates(predicate.GenerationChangedPredicate{})).
Owns(&corev1.Secret{}, builder.WithPredicates(predicate.GenerationChangedPredicate{})).
Owns(&routev1.Route{}).
Owns(&templatev1.Template{}).
// Using builder.OnlyMetadata as we are only interested in the presence and not getting this resource anywhere
Watches(
&extv1.CustomResourceDefinition{},
enqueueStorageClusterRequest,
builder.WithPredicates(
predicate.Or(
util.NamePredicate(VirtualMachineCrdName),
util.NamePredicate(StorageClientCrdName),
util.NamePredicate(VolumeGroupSnapshotClassCrdName),
),
util.EventTypePredicate(
// the values in the below map are filled before controller watches are setup and these conditions
// will just be evaluated to a boolean by the time builder completes setting up watches.
!r.AvailableCrds[VirtualMachineCrdName] || !r.AvailableCrds[StorageClientCrdName] || !r.AvailableCrds[VolumeGroupSnapshotClassCrdName],
false,
true,
false,
),
),
builder.OnlyMetadata,
).
Watches(&storagev1.StorageClass{}, enqueueStorageClusterRequest).
Watches(&volumesnapshotv1.VolumeSnapshotClass{}, enqueueStorageClusterRequest).
Watches(&ocsv1alpha1.StorageConsumer{}, enqueueStorageClusterRequest, builder.WithPredicates(storageConsumerStatusPredicate)).
Watches(&ocsv1.StorageClusterPeer{}, enqueueStorageClusterRequest, builder.WithPredicates(predicate.GenerationChangedPredicate{})).
Watches(
&corev1.ConfigMap{},
enqueueStorageClusterRequest,
builder.WithPredicates(
util.NamePredicate(OdfInfoConfigMapName),
util.NamespacePredicate(r.OperatorNamespace),
),
).
Watches(&admrv1.MutatingWebhookConfiguration{}, enqueueStorageClusterRequest, ocsMutatingWebhookPredicate)
if os.Getenv("SKIP_NOOBAA_CRD_WATCH") != "true" {
build.Owns(&nbv1.NooBaa{}, builder.WithPredicates(noobaaIgnoreTimeUpdatePredicate))
}
if r.AvailableCrds[StorageClientCrdName] {
build.Watches(&ocsclientv1a1.StorageClient{}, enqueueStorageClusterRequest)
}
mgr.GetWebhookServer().Register(
mutateStorageClassEndpoint,
&ctrlwebhook.Admission{
Handler: &webhook.StorageClassAdmission{
Client: mgr.GetClient(),
Namespace: r.OperatorNamespace,
Decoder: admission.NewDecoder(mgr.GetScheme()),
Log: mgr.GetLogger().WithName("webhook.storageclass"),
},
},
)
return build.Complete(r)
}