Uninstalling Veeam Kasten
It is important to uninstall Veeam Kasten with the Helm command to
ensure that all non-namespaced resources are cleaned up. Simply deleting
the namespace Veeam Kasten is installed in might cause issues with stale
services. Assuming Veeam Kasten was installed with the release name
k10
and in the kasten-io
namespace, run the following command to
uninstall:
$ helm uninstall k10 --namespace=kasten-io
Removing Kasten Custom Resource Definitions
After uninstalling Kasten, custom resource definitions (CRDs) will remain on the cluster. You can clean them up using the following command:
kubectl get crds -oname | grep "kio.kasten.io\|kanister.io" | xargs --no-run-if-empty kubectl delete
Note: Deleting CRDs may lead to data loss. Any resources defined by the CRDs will be deleted.