8000 How to delete CRD objects after uninstall by denist-huma · Pull Request #511 · kubedb/docs · GitHub
[go: up one dir, main page]

Skip to content

How to delete CRD objects after uninstall #511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
How to delete CRD objects after uninstall
Signed-off-by: Denis Trofimov <denis.trofimov@huma.com>
  • Loading branch information
denist-huma committed Nov 14, 2022
commit 44e93e6b7f33e3547ac8270bf166ce2df22678e1
6 changes: 6 additions & 0 deletions docs/setup/uninstall/community.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ In Helm 3, release names are [scoped to a namespace](https://v3.helm.sh/docs/faq
$ helm uninstall kubedb --namespace kubedb
```

Helm does not delete CRD objects. You can delete the ones KubeDB created with the following commands:

```bash
$ kubectl get crd -o name | grep kubedb.com | xargs kubectl delete
```

</div>
<div class="tab-pane fade" id="script" role="tabpanel" aria-labelledby="script-tab">

Expand Down
6 changes: 6 additions & 0 deletions docs/setup/uninstall/enterprise.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ In Helm 3, release names are [scoped to a namespace](https://v3.helm.sh/docs/faq
$ helm uninstall kubedb-enterprise --namespace kubedb
```

Helm does not delete CRD objects. You can delete the ones KubeDB created with the following commands:

```bash
$ kubectl get crd -o name | grep kubedb.com | xargs kubectl delete
```

</div>
<div class="tab-pane fade" id="script" role="tabpanel" aria-labelledby="script-tab">

Expand Down
0