Created
June 25, 2020 09:53
-
-
Save velotiotech/6f956e0b5de0fd61321b87f2414f9c9b to your computer and use it in GitHub Desktop.
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
func (r *ReconcileBookStore) Reconcile(request reconcile.Request) (reconcile.Result, error) { | |
reqLogger := log.WithValues("Request.Namespace", request.Namespace, "Request.Name", request.Name) | |
reqLogger.Info("Reconciling BookStore") | |
// Fetch the BookStore instance | |
bookstore := &blogv1alpha1.BookStore{} | |
err := r.client.Get(context.TODO(), request.NamespacedName, bookstore) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment