Skip to content

Commit

Permalink
docs: unset finalizer before deleting an app non-cascadingly (#10949)
Browse files Browse the repository at this point in the history
Signed-off-by: Bo Huang <beyondbill@users.noreply.github.com>
Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
  • Loading branch information
beyondbill and crenshaw-dev committed Mar 6, 2023
1 parent e4e2077 commit 152a930
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/user-guide/app_deletion.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ argocd app delete APPNAME

# Deletion Using `kubectl`

To perform a non-cascade delete:
To perform a non-cascade delete, make sure the finalizer is unset and then delete the app:

```bash
kubectl patch app APPNAME -p '{"metadata": {"finalizers": null}}' --type merge
kubectl delete app APPNAME
```

Expand Down

0 comments on commit 152a930

Please sign in to comment.