We use cookies and other similar technology to collect data to improve your experience on our site, as described in our Privacy Policy.
Run Production-Grade Databases on Kubernetes
Backup and Recovery Solution for Kubernetes
Run Production-Grade Vault on Kubernetes
Secure HAProxy Ingress Controller for Kubernetes
Kubernetes Configuration Syncer
Kubernetes Authentication WebHook Server
KubeDB simplifies Provision, Upgrade, Scaling, Volume Expansion, Monitor, Backup, Restore for various Databases in Kubernetes on any Public & Private Cloud
A complete Kubernetes native disaster recovery solution for backup and restore your volumes and databases in Kubernetes on any public and private clouds.
KubeVault is a Git-Ops ready, production-grade solution for deploying and configuring Hashicorp's Vault on Kubernetes.
Secure HAProxy Ingress Controller for Kubernetes
Kubernetes Configuration Syncer
Kubernetes Authentication WebHook Server
To uninstall KubeDB, run the following command:
In Helm 3, release names are scoped to a namespace. So, provide the namespace you used to install the operator when installing.
$ helm uninstall kubedb --namespace kubedb
Helm does not delete CRD objects. You can delete the ones KubeDB created with the following commands:
$ kubectl get crd -o name | grep kubedb.com | xargs kubectl delete
If you prefer to not use Helm, you can generate YAMLs from KubeDB chart and uninstall using kubectl
.
$ helm template kubedb oci://ghcr.io/appscode-charts/kubedb \
--namespace kubedb | kubectl delete -f -