docs/operator-manual/applicationset/Application-Deletion.md
All Application resources created by the ApplicationSet controller (from an ApplicationSet) will contain:
.metadata.ownerReferences reference back to the parent ApplicationSet resourceresources-finalizer.argocd.argoproj.io finalizer in .metadata.finalizers of the Application if .syncPolicy.preserveResourcesOnDeletion is set to false.The end result is that when an ApplicationSet is deleted, the following occurs (in rough order):
ApplicationSet resource itself is deletedApplication resources that were created from this ApplicationSet (as identified by owner reference) will be deletedDeployments, Services, ConfigMaps, etc) on the managed cluster, that were created from that Application resource (by Argo CD), will be deleted.
.syncPolicy.preserveResourcesOnDeletion to true in the ApplicationSet.Thus the lifecycle of the ApplicationSet, the Application, and the Application's resources, are equivalent.
[!NOTE] See also the controlling resource modification page for more information about how to prevent deletion or modification of Application resources by the ApplicationSet controller.
It is still possible to delete an ApplicationSet resource, while preventing Applications (and their deployed resources) from also being deleted, using a non-cascading delete:
kubectl delete ApplicationSet (NAME) --cascade=orphan
[!WARNING] Even if using a non-cascaded delete, the
resources-finalizer.argocd.argoproj.iois still specified on theApplication. Thus, when theApplicationis deleted, all of its deployed resources will also be deleted. (The lifecycle of the Application, and its child objects, are still equivalent.)To prevent the deletion of the resources of the Application, such as Services, Deployments, etc, set
.syncPolicy.preserveResourcesOnDeletionto true in the ApplicationSet. This syncPolicy parameter prevents the finalizer from being added to the Application.