Skip to content

Commit

Permalink
docs: unset finalizer before deleting an app non-cascadingly (argopro…
Browse files Browse the repository at this point in the history
…j#10949)

Signed-off-by: Bo Huang <[email protected]>
Co-authored-by: Michael Crenshaw <[email protected]>
  • Loading branch information
beyondbill and crenshaw-dev authored 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.