Skip to content

Commit

Permalink
controllers: new controller for maintenance mode
Browse files Browse the repository at this point in the history
Signed-off-by: Rewant Soni <[email protected]>
  • Loading branch information
rewantsoni committed Nov 20, 2024
1 parent 59e1460 commit 91c6229
Show file tree
Hide file tree
Showing 18 changed files with 882 additions and 279 deletions.
6 changes: 6 additions & 0 deletions api/v1alpha1/storageclient_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,16 @@ type StorageClientSpec struct {
OnboardingTicket string `json:"onboardingTicket"`
}

type ProviderAttributes struct {
InMaintenanceMode bool `json:"inMaintenanceMode"`
}

// StorageClientStatus defines the observed state of StorageClient
type StorageClientStatus struct {
Phase storageClientPhase `json:"phase,omitempty"`

Provider ProviderAttributes `json:"providerAttributes,omitempty"`

// ConsumerID will hold the identity of this cluster inside the attached provider cluster
ConsumerID string `json:"id,omitempty"`
}
Expand Down
16 changes: 16 additions & 0 deletions api/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 26 additions & 1 deletion bundle/manifests/ocs-client-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
categories: Storage
console.openshift.io/plugins: '["odf-client-console"]'
containerImage: quay.io/ocs-dev/ocs-client-operator:latest
createdAt: "2024-11-18T12:48:54Z"
createdAt: "2024-11-20T12:06:55Z"
description: OpenShift Data Foundation client operator enables consumption of
storage services from a remote centralized OpenShift Data Foundation provider
cluster.
Expand Down Expand Up @@ -326,6 +326,31 @@ spec:
- list
- update
- watch
- apiGroups:
- ramendr.openshift.io
resources:
- maintenancemodes
verbs:
- create
- delete
- get
- list
- update
- watch
- apiGroups:
- ramendr.openshift.io
resources:
- maintenancemodes/finalizers
verbs:
- update
- apiGroups:
- ramendr.openshift.io
resources:
- maintenancemodes/status
verbs:
- get
- patch
- update
- apiGroups:
- security.openshift.io
resources:
Expand Down
7 changes: 7 additions & 0 deletions bundle/manifests/ocs.openshift.io_storageclients.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ spec:
type: string
phase:
type: string
providerAttributes:
properties:
inMaintenanceMode:
type: boolean
required:
- inMaintenanceMode
type: object
type: object
type: object
served: true
Expand Down
12 changes: 12 additions & 0 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ func main() {
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
OperatorNamespace: utils.GetOperatorNamespace(),
AvailableCrds: availCrds,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "StorageClient")
os.Exit(1)
Expand Down Expand Up @@ -208,6 +209,17 @@ func main() {
os.Exit(1)
}

if availCrds[controller.MaintenanceModeCRDName] {
if err = (&controller.MaintenanceModeReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
OperatorNamespace: utils.GetOperatorNamespace(),
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "MaintenanceMode")
os.Exit(1)
}
}

setupLog.Info("starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
Expand Down
7 changes: 7 additions & 0 deletions config/crd/bases/ocs.openshift.io_storageclients.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ spec:
type: string
phase:
type: string
providerAttributes:
properties:
inMaintenanceMode:
type: boolean
required:
- inMaintenanceMode
type: object
type: object
type: object
served: true
Expand Down
25 changes: 25 additions & 0 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,31 @@ rules:
- list
- update
- watch
- apiGroups:
- ramendr.openshift.io
resources:
- maintenancemodes
verbs:
- create
- delete
- get
- list
- update
- watch
- apiGroups:
- ramendr.openshift.io
resources:
- maintenancemodes/finalizers
verbs:
- update
- apiGroups:
- ramendr.openshift.io
resources:
- maintenancemodes/status
verbs:
- get
- patch
- update
- apiGroups:
- security.openshift.io
resources:
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.22.5
replace (
github.com/portworx/sched-ops => github.com/portworx/sched-ops v0.20.4-openstorage-rc3 // required by Rook v1.12
github.com/red-hat-storage/ocs-client-operator/api => ./api
github.com/red-hat-storage/ocs-operator/services/provider/api/v4 => github.com/rewantsoni/ocs-operator/services/provider/api/v4 v4.0.0-20241120114354-2627b545ac9c
vbom.ml/util => github.com/fvbommel/util v0.0.0-20180919145318-efcd4e0f9787
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0leargg
github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk=
github.com/ramendr/ramen/api v0.0.0-20241001141243-29d6f22ad237 h1:ig6ePD0yopC5Qi5BRmhsIsKaOkdsGXTSmG3HTYIpquo=
github.com/ramendr/ramen/api v0.0.0-20241001141243-29d6f22ad237/go.mod h1:nO6VM/+PEhcPGyFIQJdhY6ip822cA61PAy/s6IjenAA=
github.com/red-hat-storage/ocs-operator/services/provider/api/v4 v4.0.0-20241113175552-201c936738fd h1:WIdoP1CE/8yl9tnHFVY7g/h4ZDFk+2Y9Ri0PrHXfx1g=
github.com/red-hat-storage/ocs-operator/services/provider/api/v4 v4.0.0-20241113175552-201c936738fd/go.mod h1:t9GJk69TGXABBF8fFPB+ImpbA9mJyRS86wW6+Qn8xHo=
github.com/rewantsoni/ocs-operator/services/provider/api/v4 v4.0.0-20241120114354-2627b545ac9c h1:ee+WfAz8+RmoJZjepvN+mbPiMsz5lUuFFOdaLpNiY5w=
github.com/rewantsoni/ocs-operator/services/provider/api/v4 v4.0.0-20241120114354-2627b545ac9c/go.mod h1:t9GJk69TGXABBF8fFPB+ImpbA9mJyRS86wW6+Qn8xHo=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
Expand Down
198 changes: 198 additions & 0 deletions internal/controller/maintenancemode_controller.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
package controller

import (
"context"
"fmt"
"time"

"github.com/red-hat-storage/ocs-client-operator/api/v1alpha1"

"github.com/go-logr/logr"
ramenv1alpha1 "github.com/ramendr/ramen/api/v1alpha1"
providerclient "github.com/red-hat-storage/ocs-operator/services/provider/api/v4/client"
storagev1 "k8s.io/api/storage/v1"
kerrors "k8s.io/apimachinery/pkg/api/errors"
"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/controller/controllerutil"
"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"
)

const (
maintenanceModeFinalizer = "ocs-client-operator.ocs.openshift.io/maintenance-mode"
ramenReplicationIdLabel = "ramendr.openshift.io/replicationID"

Check failure on line 30 in internal/controller/maintenancemode_controller.go

View workflow job for this annotation

GitHub Actions / golangci-lint

var-naming: const ramenReplicationIdLabel should be ramenReplicationIDLabel (revive)
MaintenanceModeCRDName = "maintenancemodes.ramendr.openshift.io"
)

// MaintenanceModeReconciler reconciles a ClusterVersion object
type MaintenanceModeReconciler struct {
client.Client
OperatorNamespace string
Scheme *runtime.Scheme

log logr.Logger
ctx context.Context
maintenanceMode *ramenv1alpha1.MaintenanceMode
storageClient *v1alpha1.StorageClient
}

// SetupWithManager sets up the controller with the Manager.
func (r *MaintenanceModeReconciler) SetupWithManager(mgr ctrl.Manager) error {
generationChangePredicate := predicate.GenerationChangedPredicate{}
bldr := ctrl.NewControllerManagedBy(mgr).
For(&ramenv1alpha1.MaintenanceMode{}, builder.WithPredicates(generationChangePredicate)).
Watches(&storagev1.StorageClass{}, &handler.EnqueueRequestForObject{}, builder.WithPredicates(generationChangePredicate)).
Watches(&v1alpha1.StorageClient{}, &handler.EnqueueRequestForObject{}, builder.WithPredicates(generationChangePredicate))

return bldr.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=ramendr.openshift.io,resources=maintenancemodes/finalizers,verbs=update
//+kubebuilder:rbac:groups=ocs.openshift.io,resources=storageclients,verbs=get;list;watch
//+kubebuilder:rbac:groups=storage.k8s.io,resources=storageclasses,verbs=get;list;watch

func (r *MaintenanceModeReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
r.ctx = ctx
r.log = log.FromContext(ctx, "MaintenanceMode", req)
r.log.Info("Reconciling MaintenanceMode")

r.maintenanceMode = &ramenv1alpha1.MaintenanceMode{}
r.maintenanceMode.Name = req.Name
if err := r.get(r.maintenanceMode); err != nil {
if kerrors.IsNotFound(err) {
r.log.Info("Maintenance Mode resource not found. Ignoring since object might be deleted.")
return reconcile.Result{}, nil
}
r.log.Error(err, "failed to get the Maintenance Mode")
return reconcile.Result{}, err
}

// find the storageClass with the targetID
storageClassList := &storagev1.StorageClassList{}
err := r.list(storageClassList, client.MatchingLabels{ramenReplicationIdLabel: r.maintenanceMode.Spec.TargetID})
if err != nil {
return ctrl.Result{}, err
}
if len(storageClassList.Items) != 1 {
return ctrl.Result{}, fmt.Errorf("failed to find storageClass for maintenance mode")
}

storageClass := &storageClassList.Items[0]

// find the storageClient with the targetID
val, _ := storageClass.GetLabels()[storageClientLabel]

Check failure on line 92 in internal/controller/maintenancemode_controller.go

View workflow job for this annotation

GitHub Actions / golangci-lint

S1005: unnecessary assignment to the blank identifier (gosimple)
r.storageClient = &v1alpha1.StorageClient{}
r.storageClient.Name = val
err = r.get(r.storageClient)
if err != nil {
return ctrl.Result{}, fmt.Errorf("failed to get the storage client: %v", err)
}

result, reconcileErr := r.reconcileStates()

// Apply status changes to the StorageClient
statusErr := r.Client.Status().Update(ctx, r.storageClient)
if statusErr != nil {
r.log.Error(statusErr, "Failed to update MaintenanceMode status.")
}
if reconcileErr != nil {
err = reconcileErr
} else if statusErr != nil {
err = statusErr
}
return result, err
}

func (r *MaintenanceModeReconciler) reconcileStates() (ctrl.Result, error) {
if r.maintenanceMode.GetDeletionTimestamp().IsZero() {

//ensure finalizer
if controllerutil.AddFinalizer(r.maintenanceMode, maintenanceModeFinalizer) {
r.log.Info("finalizer missing on the Maintenance Mode resource, adding...")
if err := r.Client.Update(r.ctx, r.maintenanceMode); err != nil {
return ctrl.Result{}, err
}
}

if !r.storageClient.Status.Provider.InMaintenanceMode {
providerClient, err := providerclient.NewProviderClient(
r.ctx,
r.storageClient.Spec.StorageProviderEndpoint,
10*time.Second,
)
if err != nil {
return reconcile.Result{}, fmt.Errorf(
"failed to create provider client with endpoint %v: %v",
r.storageClient.Spec.StorageProviderEndpoint,
err,
)
}
// Close client-side connections.
defer providerClient.Close()

_, err = providerClient.RequestMaintenanceMode(r.ctx, r.storageClient.Status.ConsumerID, true)
if err != nil {
return ctrl.Result{}, fmt.Errorf("failed to Request maintenance mode: %v", err)
}
r.maintenanceMode.Status.State = ramenv1alpha1.MModeStateUnknown
return ctrl.Result{Requeue: true}, nil
}

r.maintenanceMode.Status.State = ramenv1alpha1.MModeStateCompleted
r.maintenanceMode.Status.ObservedGeneration = r.maintenanceMode.Generation
meta.SetStatusCondition(&r.maintenanceMode.Status.Conditions,
metav1.Condition{
Type: string(ramenv1alpha1.MModeConditionFailoverActivated),
ObservedGeneration: r.maintenanceMode.Generation,
Reason: string(ramenv1alpha1.MModeStateCompleted),
Status: metav1.ConditionTrue,
},
)
} else {
// deletion phase
if r.storageClient.Status.Provider.InMaintenanceMode {
providerClient, err := providerclient.NewProviderClient(
r.ctx,
r.storageClient.Spec.StorageProviderEndpoint,
10*time.Second,
)
if err != nil {
return reconcile.Result{}, fmt.Errorf("failed to create provider client with endpoint %v: %v", r.storageClient.Spec.StorageProviderEndpoint, err)
}
// Close client-side connections.
defer providerClient.Close()

_, err = providerClient.RequestMaintenanceMode(r.ctx, r.storageClient.Status.ConsumerID, false)
if err != nil {
return ctrl.Result{}, fmt.Errorf("failed to Request maintenance mode: %v", err)
}
return ctrl.Result{Requeue: true}, nil
}

//remove finalizer
if controllerutil.RemoveFinalizer(r.maintenanceMode, maintenanceModeFinalizer) {
if err := r.Client.Update(r.ctx, r.maintenanceMode); err != nil {
return ctrl.Result{}, err
}
r.log.Info("finalizer removed successfully")
}
}
return ctrl.Result{}, nil
}

func (r *MaintenanceModeReconciler) get(obj client.Object, opts ...client.GetOption) error {
return r.Get(r.ctx, client.ObjectKeyFromObject(obj), obj, opts...)
}

func (r *MaintenanceModeReconciler) list(obj client.ObjectList, opts ...client.ListOption) error {
return r.List(r.ctx, obj, opts...)
}
Loading

0 comments on commit 91c6229

Please sign in to comment.