Skip to content

Commit

Permalink
Add a finaliser to ClusterCatalog
Browse files Browse the repository at this point in the history
New finaliser allows us to remove catalog cache from filesystem
on catalog deletion.

Signed-off-by: Mikalai Radchuk <[email protected]>
  • Loading branch information
Mikalai Radchuk committed Sep 16, 2024
1 parent 0608b8e commit b607a08
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 6 deletions.
17 changes: 17 additions & 0 deletions cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,23 @@ func main() {
setupLog.Error(err, "unable to create controller", "controller", "ClusterExtension")
os.Exit(1)
}

clusterCatalogFinalizers := crfinalizer.NewFinalizers()
if err := clusterCatalogFinalizers.Register(controllers.ClusterCatalogCacheDeletionFinalizer, finalizerFunc(func(ctx context.Context, obj client.Object) (crfinalizer.Result, error) {
return crfinalizer.Result{}, cacheFetcher.Remove(obj.GetName())
})); err != nil {
setupLog.Error(err, "unable to register finalizer", "finalizerKey", controllers.ClusterCatalogCacheDeletionFinalizer)
os.Exit(1)
}

if err = (&controllers.ClusterCatalogReconciler{
Client: cl,
Finalizers: clusterCatalogFinalizers,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "ClusterCatalogReconciler")
os.Exit(1)
}

//+kubebuilder:scaffold:builder

if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
Expand Down
16 changes: 10 additions & 6 deletions config/base/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,28 @@ rules:
resources:
- clustercatalogs
verbs:
- get
- list
- update
- watch
- apiGroups:
- olm.operatorframework.io
resources:
- clusterextensions
- clustercatalogs/finalizers
- clustercatalogs/status
- clusterextensions/finalizers
verbs:
- get
- list
- patch
- update
- watch
- apiGroups:
- olm.operatorframework.io
resources:
- clusterextensions/finalizers
- clusterextensions
verbs:
- get
- list
- patch
- update
- watch
- apiGroups:
- olm.operatorframework.io
resources:
Expand Down
79 changes: 79 additions & 0 deletions internal/controllers/clustercatalog_controller.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
Copyright 2024.
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 controllers

import (
"context"
"errors"
"fmt"

ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
crfinalizer "sigs.k8s.io/controller-runtime/pkg/finalizer"

catalogd "github.com/operator-framework/catalogd/api/core/v1alpha1"
)

const (
ClusterCatalogCacheDeletionFinalizer = "olm.operatorframework.io/cluster-catalog-cache-deletion"
)

// ClusterCatalogReconciler reconciles a ClusterCatalog object
type ClusterCatalogReconciler struct {
client.Client
Finalizers crfinalizer.Finalizers
}

//+kubebuilder:rbac:groups=olm.operatorframework.io,resources=clustercatalogs,verbs=get;list;watch;update
//+kubebuilder:rbac:groups=olm.operatorframework.io,resources=clustercatalogs/status,verbs=update
//+kubebuilder:rbac:groups=olm.operatorframework.io,resources=clustercatalogs/finalizers,verbs=update

func (r *ClusterCatalogReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
existingCatalog := &catalogd.ClusterCatalog{}
if err := r.Client.Get(ctx, req.NamespacedName, existingCatalog); err != nil {
return ctrl.Result{}, client.IgnoreNotFound(err)
}

finalizeResult, err := r.Finalizers.Finalize(ctx, existingCatalog)
if err != nil {
return ctrl.Result{}, err
}

var updateError error
if finalizeResult.StatusUpdated {
if err := r.Client.Status().Update(ctx, existingCatalog); err != nil {
updateError = errors.Join(updateError, fmt.Errorf("error updating status: %v", err))
}
}

if finalizeResult.Updated {
if err := r.Client.Update(ctx, existingCatalog); err != nil {
updateError = errors.Join(updateError, fmt.Errorf("error updating finalizers: %v", err))
}
}

return ctrl.Result{}, updateError
}

// SetupWithManager sets up the controller with the Manager.
func (r *ClusterCatalogReconciler) SetupWithManager(mgr ctrl.Manager) error {
_, err := ctrl.NewControllerManagedBy(mgr).
For(&catalogd.ClusterCatalog{}).
Build(r)

return err
}

0 comments on commit b607a08

Please sign in to comment.