diff --git a/OWNERS_ALIASES b/OWNERS_ALIASES index 8697326bc..a985fea53 100644 --- a/OWNERS_ALIASES +++ b/OWNERS_ALIASES @@ -1,8 +1,8 @@ aliases: ceph-csi-team: - agarwal-mudit - - humblec - madhu-1 - nixpanic - rakshith-r + - riya-singhal31 - yati1998 diff --git a/controllers/csiaddons/persistentvolumeclaim_controller.go b/controllers/csiaddons/persistentvolumeclaim_controller.go index 85fe1d77c..8901a03a6 100644 --- a/controllers/csiaddons/persistentvolumeclaim_controller.go +++ b/controllers/csiaddons/persistentvolumeclaim_controller.go @@ -240,7 +240,7 @@ func (r *PersistentVolumeClaimReconciler) checkDriverSupportReclaimsSpace(logger } // determineScheduleAndRequeue determines the schedule using the following steps -// - Check if the schedule is persent in the PVC annotations. If yes, use that. +// - Check if the schedule is present in the PVC annotations. If yes, use that. // - Check if the schedule is present in the namespace annotations. If yes, // use that. // - If schedule is not present in namespace annotations, return ErrorScheduleNotFound. diff --git a/controllers/csiaddons/reclaimspacecronjob_controller.go b/controllers/csiaddons/reclaimspacecronjob_controller.go index 424632314..80250a0af 100644 --- a/controllers/csiaddons/reclaimspacecronjob_controller.go +++ b/controllers/csiaddons/reclaimspacecronjob_controller.go @@ -138,7 +138,7 @@ func (r *ReclaimSpaceCronJobReconciler) Reconcile(ctx context.Context, req ctrl. // We'll prep our eventual request to requeue until the next job, and then figure // out if we actually need to run. - scheduledResult := ctrl.Result{RequeueAfter: time.Until(nextRun)} // save this so we can re-use it elsewhere + scheduledResult := ctrl.Result{RequeueAfter: time.Until(nextRun)} // save this so we can reuse it elsewhere logger = logger.WithValues("now", time.Now(), "nextRun", nextRun) // If we've missed a run, and we're still within the deadline to start it, we'll need to run a job. diff --git a/internal/proto/reclaimspace.proto b/internal/proto/reclaimspace.proto index 30b0d8d3f..bb6d09c3c 100644 --- a/internal/proto/reclaimspace.proto +++ b/internal/proto/reclaimspace.proto @@ -3,7 +3,7 @@ package proto; option go_package = "github.com/csi-addons/kubernetes-csi-addons/internal/proto"; -// ReclaimSpace holds the RPC menthod for allowing the +// ReclaimSpace holds the RPC method for allowing the // communication between the CSIAddons controller and the sidecar. service ReclaimSpace { // ControllerReclaimSpace is a procedure that gets called on the CSI diff --git a/internal/proto/replication.proto b/internal/proto/replication.proto index 7b32ea375..a186b1705 100644 --- a/internal/proto/replication.proto +++ b/internal/proto/replication.proto @@ -6,7 +6,7 @@ import "google/protobuf/timestamp.proto"; option go_package = "github.com/csi-addons/kubernetes-csi-addons/internal/proto"; -// Replication holds the RPC menthod for allowing the communication between +// Replication holds the RPC method for allowing the communication between // the CSIAddons controller and the sidecar for replication operation. service Replication { // EnableVolumeReplication RPC call to enable the volume replication.