You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 3, 2022. It is now read-only.
klog.V(4).Infof("Achor %q in namespace %q was recreated at some point, as its creationTimestamp differs from its owning InstallationTarget creationTimestamp",
234
+
item.Name, item.Namespace)
235
+
}
228
236
// The anchor config map's installation target UID and the installation
229
237
// target object in the manage cluster match, so we just bail out here.
230
238
returnnil
@@ -276,13 +284,19 @@ func (c *Controller) syncInstallationTarget(item *InstallationTargetWorkItem) er
276
284
"ConfigMapDeleted",
277
285
"Config map %q has been deleted from cluster %q",
278
286
err.Error())
287
+
klog.V(4).Infof(
288
+
"Attempted to remove anchor %q in namespace %q because owner installation target was removed, but error %q occurred",
289
+
item.AnchorName, item.Namespace, err)
279
290
returnerr
280
291
} elseifok {
281
292
c.recorder.Eventf(installationTarget,
282
293
corev1.EventTypeNormal,
283
294
"ConfigMapDeleted",
284
295
"Config map %q has been deleted from cluster %q",
285
296
item.Key, clusterName)
297
+
klog.V(4).Infof(
298
+
"Removed anchor %q in namespace %q because owner installation target was removed",
0 commit comments