From 276416a5fc6346de112ce9aa3b44342f2507063e Mon Sep 17 00:00:00 2001 From: Vince Prignano Date: Tue, 17 Mar 2020 19:24:39 -0700 Subject: [PATCH] :running: Add log line when reconciling KubeadmControlPlane Signed-off-by: Vince Prignano --- .../kubeadm/controllers/kubeadm_control_plane_controller.go | 1 + 1 file changed, 1 insertion(+) diff --git a/controlplane/kubeadm/controllers/kubeadm_control_plane_controller.go b/controlplane/kubeadm/controllers/kubeadm_control_plane_controller.go index ea440b23c4d4..a3745818b3e3 100644 --- a/controlplane/kubeadm/controllers/kubeadm_control_plane_controller.go +++ b/controlplane/kubeadm/controllers/kubeadm_control_plane_controller.go @@ -117,6 +117,7 @@ func (r *KubeadmControlPlaneReconciler) SetupWithManager(mgr ctrl.Manager, optio func (r *KubeadmControlPlaneReconciler) Reconcile(req ctrl.Request) (res ctrl.Result, reterr error) { logger := r.Log.WithValues("namespace", req.Namespace, "kubeadmControlPlane", req.Name) + logger.Info("Reconcile KubeadmControlPlane") ctx := context.Background() // Fetch the KubeadmControlPlane instance.