Kubernetes - Operators and Custom Resources
Given this snippet from an Operator's reconcile function, what will be the result if the custom resource is not found?
```go
func (r *MyReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
var cr myv1.MyResource
err := r.Get(ctx, req.NamespacedName, &cr)
if errors.IsNotFound(err) {
return ctrl.Result{}, nil
}
// other logic
return ctrl.Result{}, err
}
```
