You are looking at the documentation of a prior release. To read the documentation of the latest release, please visit here.

Uninstall KubeDB operator

To uninstall KubeDB operator, run the following command:

Using Helm 3

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-operator --namespace kube-system
$ helm uninstall kubedb-catalog --namespace kube-system

Using Helm 2

$ helm delete kubedb-operator
$ helm delete kubedb-catalog

Using YAML (with Helm 3)

If you prefer to not use Helm, you can generate YAMLs from KubeDB operator chart and uninstall using kubectl.

$ helm template kubedb-operator appscode/kubedb --namespace kube-system | kubectl delete -f -
$ helm template kubedb-catalog appscode/kubedb-catalog --namespace kube-system | kubectl delete -f -