diff --git a/controllers/handlers_helm.go b/controllers/handlers_helm.go index b0f9fbb3..53faeeff 100644 --- a/controllers/handlers_helm.go +++ b/controllers/handlers_helm.go @@ -322,7 +322,9 @@ func undeployHelmCharts(ctx context.Context, c client.Client, if isPullMode { mgmtResources, err := collectTemplateResourceRefs(ctx, clusterSummary) if err != nil { - return err + if !apierrors.IsNotFound(err) { + return err + } } return undeployHelmChartsInPullMode(ctx, c, clusterSummary, mgmtResources, logger)