Application Pruning & Resource Deletion¶
All Application resources created by the ApplicationSet controller (from an ApplicationSet) will contain:
- A
.metadata.ownerReferencesreference back to the parentApplicationSetresource - An Argo CD
resources-finalizer.argocd.argoproj.iofinalizer in.metadata.finalizersof the Application.
The end result is that when an ApplicationSet is deleted, the following occurs (in rough order):
- The
ApplicationSetresource itself is deleted - Any
Applicationresources that were created from thisApplicationSet(as identified by owner reference), will be deleted. - Any deployed resources (
Deployments,Services,ConfigMaps, etc) on the managed cluster, that were created from thatApplicationresource (by Argo CD), will be deleted.- Argo CD is responsible for handling this deletion, via the deletion finalizer.
Thus the lifecycle of the ApplicationSet, the Application, and the Application's resources, are equivalent.
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=false
Warning
Even if using a non-cascaded delete, the resources-finalizer.argocd.argoproj.io is still specified on the Application. Thus, when the Application is deleted, all of its deployed resources will also be deleted. (The lifecycle of the Application, and its child objects, are still equivalent)