diff --git a/controllers/handlers_helm.go b/controllers/handlers_helm.go index 27464fbd..392b3a94 100644 --- a/controllers/handlers_helm.go +++ b/controllers/handlers_helm.go @@ -344,7 +344,9 @@ func undeployHelmCharts(ctx context.Context, c client.Client, mgmtResources, err := collectTemplateResourceRefs(ctx, clusterSummary) if err != nil { - return err + if !apierrors.IsNotFound(err) { + return err + } } err = undeployHelmChartResources(ctx, c, clusterSummary, kubeconfig, mgmtResources, logger)