-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #1128: Removed multiple DPA get calls for Reconcilers
- Loading branch information
1 parent
f23e821
commit a595dc2
Showing
12 changed files
with
47 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,6 +51,7 @@ type DPAReconciler struct { | |
Context context.Context | ||
NamespacedName types.NamespacedName | ||
EventRecorder record.EventRecorder | ||
dpa *oadpv1alpha1.DataProtectionApplication | ||
} | ||
|
||
var debugMode = os.Getenv("DEBUG") == "true" | ||
|
@@ -75,15 +76,15 @@ var debugMode = os.Getenv("DEBUG") == "true" | |
// - https://pkg.go.dev/sigs.k8s.io/[email protected]/pkg/reconcile | ||
func (r *DPAReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) { | ||
r.Log = log.FromContext(ctx) | ||
logger := r.Log.WithValues("dpa", req.NamespacedName) | ||
log := r.Log.WithValues("dpa", req.NamespacedName) | ||
result := ctrl.Result{} | ||
// Set reconciler context + name | ||
r.Context = ctx | ||
r.NamespacedName = req.NamespacedName | ||
dpa := oadpv1alpha1.DataProtectionApplication{} | ||
r.dpa = &oadpv1alpha1.DataProtectionApplication{} | ||
|
||
if err := r.Get(ctx, req.NamespacedName, &dpa); err != nil { | ||
logger.Error(err, "unable to fetch DataProtectionApplication CR") | ||
if err := r.Get(ctx, req.NamespacedName, r.dpa); err != nil { | ||
log.Error(err, "unable to fetch DataProtectionApplication CR") | ||
return result, nil | ||
} | ||
|
||
|
@@ -108,7 +109,7 @@ func (r *DPAReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.R | |
) | ||
|
||
if err != nil { | ||
apimeta.SetStatusCondition(&dpa.Status.Conditions, | ||
apimeta.SetStatusCondition(&r.dpa.Status.Conditions, | ||
metav1.Condition{ | ||
Type: oadpv1alpha1.ConditionReconciled, | ||
Status: metav1.ConditionFalse, | ||
|
@@ -118,7 +119,7 @@ func (r *DPAReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.R | |
) | ||
|
||
} else { | ||
apimeta.SetStatusCondition(&dpa.Status.Conditions, | ||
apimeta.SetStatusCondition(&r.dpa.Status.Conditions, | ||
metav1.Condition{ | ||
Type: oadpv1alpha1.ConditionReconciled, | ||
Status: metav1.ConditionTrue, | ||
|
@@ -127,7 +128,7 @@ func (r *DPAReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.R | |
}, | ||
) | ||
} | ||
statusErr := r.Client.Status().Update(ctx, &dpa) | ||
statusErr := r.Client.Status().Update(ctx, r.dpa) | ||
if err == nil { // Don't mask previous error | ||
err = statusErr | ||
} | ||
|
@@ -214,7 +215,6 @@ type ReconcileFunc func(logr.Logger) (bool, error) | |
// false or an error. | ||
func ReconcileBatch(l logr.Logger, reconcileFuncs ...ReconcileFunc) (bool, error) { | ||
// TODO: #1127 DPAReconciler already have a logger, use it instead of passing to each reconcile functions | ||
// TODO: #1128 Right now each reconcile functions call get for DPA, we can do it once and pass it to each function | ||
for _, f := range reconcileFuncs { | ||
if cont, err := f(l); !cont || err != nil { | ||
return cont, err | ||
|
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
Oops, something went wrong.