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
machineScope.Logger.Info(fmt.Sprintf("Kind %s not found, assuming IP objects for that kind is absent", ipList.GetObjectKind().GroupVersionKind().Kind))
190
+
machineScope.Logger.Info("Kind not found, assuming IP objects for that kind is absent", "kind", ipList.GetObjectKind().GroupVersionKind().Kind)
191
191
ipList=&capiv1beta1.IPAddressClaimList{}
192
192
} elseiferr!=nil {
193
193
return ctrl.Result{}, fmt.Errorf("error listing ip resources: %s", err.Error())
machineScope.Logger.Info("Kind not found, assuming IP objects for that kind is absent", "kind", ipList.GetObjectKind().GroupVersionKind().Kind, "object", ip.Name)
199
+
} elseifclient.IgnoreNotFound(err) !=nil {
200
+
// Unknown leads to short retry in machine controller
198
201
return ctrl.Result{}, fmt.Errorf("error deleting ip resource: %s", err.Error())
0 commit comments