pkg/controllers/nodeclass/termination/controller.go (91 lines of code) (raw):

/* Portions Copyright (c) Microsoft Corporation. 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 termination import ( "context" "fmt" "time" "k8s.io/apimachinery/pkg/api/errors" "sigs.k8s.io/karpenter/pkg/operator/injection" "github.com/Azure/karpenter-provider-azure/pkg/apis/v1alpha2" "github.com/samber/lo" "k8s.io/apimachinery/pkg/api/equality" "k8s.io/apimachinery/pkg/types" controllerruntime "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/controller" "sigs.k8s.io/controller-runtime/pkg/controller/controllerutil" "sigs.k8s.io/controller-runtime/pkg/event" "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/manager" "sigs.k8s.io/controller-runtime/pkg/predicate" "sigs.k8s.io/controller-runtime/pkg/reconcile" "github.com/awslabs/operatorpkg/reasonable" karpv1 "sigs.k8s.io/karpenter/pkg/apis/v1" "sigs.k8s.io/karpenter/pkg/events" ) type Controller struct { kubeClient client.Client recorder events.Recorder } func NewController(kubeClient client.Client, recorder events.Recorder) *Controller { return &Controller{ kubeClient: kubeClient, recorder: recorder, } } func (c *Controller) Reconcile(ctx context.Context, nodeClass *v1alpha2.AKSNodeClass) (reconcile.Result, error) { ctx = injection.WithControllerName(ctx, "nodeclass.termination") if !nodeClass.GetDeletionTimestamp().IsZero() { return c.finalize(ctx, nodeClass) } return reconcile.Result{}, nil } func (c *Controller) finalize(ctx context.Context, nodeClass *v1alpha2.AKSNodeClass) (reconcile.Result, error) { stored := nodeClass.DeepCopy() if !controllerutil.ContainsFinalizer(nodeClass, v1alpha2.TerminationFinalizer) { return reconcile.Result{}, nil } nodeClaimList := &karpv1.NodeClaimList{} if err := c.kubeClient.List(ctx, nodeClaimList, client.MatchingFields{"spec.nodeClassRef.name": nodeClass.Name}); err != nil { return reconcile.Result{}, fmt.Errorf("listing nodeclaims that are using nodeclass, %w", err) } if len(nodeClaimList.Items) > 0 { c.recorder.Publish(WaitingOnNodeClaimTerminationEvent(nodeClass, lo.Map(nodeClaimList.Items, func(nc karpv1.NodeClaim, _ int) string { return nc.Name }))) return reconcile.Result{RequeueAfter: time.Minute * 10}, nil // periodically fire the event } // any other processing before removing NodeClass goes here controllerutil.RemoveFinalizer(nodeClass, v1alpha2.TerminationFinalizer) if !equality.Semantic.DeepEqual(stored, nodeClass) { // We use client.MergeFromWithOptimisticLock because patching a list with a JSON merge patch // can cause races due to the fact that it fully replaces the list on a change // Here, we are updating the finalizer list // https://github.com/kubernetes/kubernetes/issues/111643#issuecomment-2016489732 if err := c.kubeClient.Patch(ctx, nodeClass, client.MergeFromWithOptions(stored, client.MergeFromWithOptimisticLock{})); err != nil { if errors.IsConflict(err) { return reconcile.Result{Requeue: true}, nil } return reconcile.Result{}, client.IgnoreNotFound(fmt.Errorf("removing termination finalizer, %w", err)) } } return reconcile.Result{}, nil } func (c *Controller) Register(_ context.Context, m manager.Manager) error { return controllerruntime.NewControllerManagedBy(m). Named("nodeclass.termination"). For(&v1alpha2.AKSNodeClass{}). Watches( &karpv1.NodeClaim{}, handler.EnqueueRequestsFromMapFunc(func(_ context.Context, o client.Object) []reconcile.Request { nc := o.(*karpv1.NodeClaim) if nc.Spec.NodeClassRef == nil { return nil } return []reconcile.Request{{NamespacedName: types.NamespacedName{Name: nc.Spec.NodeClassRef.Name}}} }), // Watch for NodeClaim deletion events builder.WithPredicates(predicate.Funcs{ CreateFunc: func(e event.CreateEvent) bool { return false }, UpdateFunc: func(e event.UpdateEvent) bool { return false }, DeleteFunc: func(e event.DeleteEvent) bool { return true }, }), ). WithOptions(controller.Options{ RateLimiter: reasonable.RateLimiter(), // TODO: Document why this magic number used. If we want to consistently use it accoss reconcilers, refactor to a reused const. // Comments thread discussing this: https://github.com/Azure/karpenter-provider-azure/pull/729#discussion_r2006629809 MaxConcurrentReconciles: 10, }). Complete(reconcile.AsReconciler(m.GetClient(), c)) }