forked from red-hat-storage/ocs-client-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
controllers: new controller for maintenance mode
Signed-off-by: Rewant Soni <[email protected]>
- Loading branch information
1 parent
ea0594e
commit 71b34b2
Showing
14 changed files
with
348 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,201 @@ | ||
package controller | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"github.com/go-logr/logr" | ||
ramenv1alpha1 "github.com/ramendr/ramen/api/v1alpha1" | ||
"github.com/red-hat-storage/ocs-client-operator/api/v1alpha1" | ||
"github.com/red-hat-storage/ocs-client-operator/pkg/utils" | ||
providerclient "github.com/red-hat-storage/ocs-operator/services/provider/api/v4/client" | ||
"k8s.io/apimachinery/pkg/api/meta" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
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/log" | ||
"sigs.k8s.io/controller-runtime/pkg/predicate" | ||
"sigs.k8s.io/controller-runtime/pkg/reconcile" | ||
"slices" | ||
) | ||
|
||
const ( | ||
MaintenanceModeCRDName = "maintenancemodes.ramendr.openshift.io" | ||
) | ||
|
||
// MaintenanceModeReconciler reconciles a ClusterVersion object | ||
type MaintenanceModeReconciler struct { | ||
client.Client | ||
Scheme *runtime.Scheme | ||
|
||
log logr.Logger | ||
ctx context.Context | ||
} | ||
|
||
// SetupWithManager sets up the controller with the Manager. | ||
func (r *MaintenanceModeReconciler) SetupWithManager(mgr ctrl.Manager) error { | ||
generationChangePredicate := predicate.GenerationChangedPredicate{} | ||
maintenanceModeChangedPredicate := predicate.Funcs{ | ||
UpdateFunc: func(e event.UpdateEvent) bool { | ||
if e.ObjectOld == nil || e.ObjectNew == nil { | ||
return false | ||
} | ||
oldObj := e.ObjectOld.(*v1alpha1.StorageClient) | ||
newObj := e.ObjectNew.(*v1alpha1.StorageClient) | ||
return oldObj.Status.InMaintenanceMode != newObj.Status.InMaintenanceMode | ||
}, | ||
} | ||
return ctrl.NewControllerManagedBy(mgr). | ||
Named("MaintenanceMode"). | ||
Watches( | ||
&ramenv1alpha1.MaintenanceMode{}, | ||
&handler.EnqueueRequestForObject{}, | ||
builder.WithPredicates(generationChangePredicate), | ||
). | ||
Watches( | ||
&v1alpha1.StorageClaim{}, | ||
&handler.EnqueueRequestForObject{}, | ||
builder.WithPredicates(generationChangePredicate), | ||
). | ||
Watches( | ||
&v1alpha1.StorageClient{}, | ||
&handler.EnqueueRequestForObject{}, | ||
builder.WithPredicates( | ||
generationChangePredicate, | ||
maintenanceModeChangedPredicate, | ||
), | ||
). | ||
Complete(r) | ||
} | ||
|
||
//+kubebuilder:rbac:groups=ramendr.openshift.io,resources=maintenancemodes,verbs=get;list;update;create;watch;delete | ||
//+kubebuilder:rbac:groups=ramendr.openshift.io,resources=maintenancemodes/status,verbs=get;update;patch | ||
//+kubebuilder:rbac:groups=ocs.openshift.io,resources=storageclients;storageclaims,verbs=get;list;watch | ||
|
||
func (r *MaintenanceModeReconciler) Reconcile(ctx context.Context, _ ctrl.Request) (ctrl.Result, error) { | ||
r.ctx = ctx | ||
r.log = log.FromContext(ctx) | ||
r.log.Info("Starting reconcile") | ||
|
||
nameToStorageClient := map[string]*v1alpha1.StorageClient{} | ||
|
||
maintenanceModes := &ramenv1alpha1.MaintenanceModeList{} | ||
if err := r.list(maintenanceModes); err != nil { | ||
r.log.Error(err, "failed to list the MaintenanceMode CRs") | ||
return reconcile.Result{}, err | ||
} | ||
|
||
for i := range maintenanceModes.Items { | ||
mm := &maintenanceModes.Items[i] | ||
sc := &v1alpha1.StorageClaim{} | ||
// MMode's TargetID is replicationID, which in our case is storageClaim name | ||
sc.Name = mm.Spec.TargetID | ||
if err := r.get(sc); err != nil { | ||
return ctrl.Result{}, err | ||
} | ||
clientName := sc.Spec.StorageClient | ||
if clientName == "" { | ||
return ctrl.Result{}, fmt.Errorf("StorageClaim %s does not have a StorageClient defined", sc.Name) | ||
} | ||
if nameToStorageClient[clientName] == nil { | ||
storageClient := &v1alpha1.StorageClient{} | ||
storageClient.Name = clientName | ||
if err := r.get(storageClient); err != nil { | ||
return ctrl.Result{}, err | ||
} | ||
nameToStorageClient[clientName] = storageClient | ||
} | ||
if nameToStorageClient[clientName].Status.InMaintenanceMode { | ||
if err := r.updateStatusCompletedForMM(mm); err != nil { | ||
return ctrl.Result{}, fmt.Errorf("failed to update status for MaintenanceMode %s: %w", mm.Name, err) | ||
} | ||
} | ||
} | ||
|
||
storageClients := &v1alpha1.StorageClientList{} | ||
if err := r.list(storageClients); err != nil { | ||
r.log.Error(err, "failed to list the Storage Clients") | ||
return reconcile.Result{}, err | ||
} | ||
|
||
for i := range storageClients.Items { | ||
storageClient := &storageClients.Items[i] | ||
_, needsMaintenanceMode := nameToStorageClient[storageClient.Name] | ||
if needsMaintenanceMode != storageClient.Status.InMaintenanceMode { | ||
if err := r.toggleMaintenanceModeForClient(storageClient, needsMaintenanceMode); err != nil { | ||
return ctrl.Result{}, err | ||
} | ||
} | ||
} | ||
|
||
return ctrl.Result{}, nil | ||
} | ||
|
||
func (r *MaintenanceModeReconciler) toggleMaintenanceModeForClient(storageClient *v1alpha1.StorageClient, enable bool) error { | ||
providerClient, err := providerclient.NewProviderClient( | ||
r.ctx, | ||
storageClient.Spec.StorageProviderEndpoint, | ||
utils.OcsClientTimeout, | ||
) | ||
if err != nil { | ||
return fmt.Errorf( | ||
"failed to create provider client with endpoint %v: %v", | ||
storageClient.Spec.StorageProviderEndpoint, | ||
err, | ||
) | ||
} | ||
// Close client-side connections. | ||
defer providerClient.Close() | ||
|
||
_, err = providerClient.RequestMaintenanceMode(r.ctx, storageClient.Status.ConsumerID, enable) | ||
if err != nil { | ||
return fmt.Errorf("failed to Request maintenance mode: %v", err) | ||
} | ||
return nil | ||
} | ||
|
||
func (r *MaintenanceModeReconciler) updateStatusCompletedForMM(maintenanceMode *ramenv1alpha1.MaintenanceMode) error { | ||
// Ramen reads the State and Conditions in order to determine that the MaintenanceMode is Completed | ||
|
||
if maintenanceMode.Status.State == ramenv1alpha1.MModeStateCompleted { | ||
return nil | ||
} | ||
|
||
if slices.Index(maintenanceMode.Status.Conditions, | ||
metav1.Condition{ | ||
Type: string(ramenv1alpha1.MModeConditionFailoverActivated), | ||
Status: metav1.ConditionTrue, | ||
Reason: string(ramenv1alpha1.MModeStateCompleted), | ||
ObservedGeneration: maintenanceMode.Generation, | ||
}, | ||
) != -1 { | ||
return nil | ||
} | ||
|
||
maintenanceMode.Status.State = ramenv1alpha1.MModeStateCompleted | ||
maintenanceMode.Status.ObservedGeneration = maintenanceMode.Generation | ||
meta.SetStatusCondition(&maintenanceMode.Status.Conditions, | ||
metav1.Condition{ | ||
Type: string(ramenv1alpha1.MModeConditionFailoverActivated), | ||
ObservedGeneration: maintenanceMode.Generation, | ||
Reason: string(ramenv1alpha1.MModeStateCompleted), | ||
Status: metav1.ConditionTrue, | ||
}, | ||
) | ||
|
||
if err := r.Client.Status().Update(r.ctx, maintenanceMode); err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func (r *MaintenanceModeReconciler) list(obj client.ObjectList, opts ...client.ListOption) error { | ||
return r.List(r.ctx, obj, opts...) | ||
} | ||
|
||
func (r *MaintenanceModeReconciler) get(obj client.Object, opts ...client.GetOption) error { | ||
return r.Get(r.ctx, client.ObjectKeyFromObject(obj), obj, opts...) | ||
} |
Oops, something went wrong.