Uninstall Options
This section describes how to uninstall Trilio for Kubernetes (T4K)
Last updated
This section describes how to uninstall Trilio for Kubernetes (T4K)
Last updated
To uninstall Trilio for Kubernetes, the custom resources, CRDs and the Operator must be removed from the Kubernetes cluster or namespace. There are two ways users can uninstall T4K - automated (via a Trilio provided plugin) or manually removing all the items.
Automated Uninstall (via the T4K Cleanup Plugin)
Trilio provides a plugin that automates the uninstall of all the resources and objects created to support the solution. The automation provides a non-interactive mode to allow unattended uninstall of the solution, and also provides an interactive mode to specifically uninstall different components. For further details, refer to the T4K Cleanup Plugin.
Users can manually uninstall components of the Trilio solution. Since Trilio supports Operator Lifecycle Manager (OLM) and an upstream Helm-based operator, the steps required to uninstall Trilio for both types of Operators are different.
Delete all the custom resources associated with Trilio - Backup, Restores, Targets, Hooks, BackupPlans, ClusterBackupPlan etc.
Uninstall the Trilio for Kubernetes Operator - can be done directly from the OpenShift user interface console. After a successful uninstall the Trilio application will not be available.
Do not forget to delete the Trilio CRDs from the CRD page of OpenShift. Or run oc delete crds $(oc get crds | grep trilio | awk '{print $1}')
from OpenShift CLI
The application is now uninstalled and you can install a newer version.
Use the following steps to uninstall Trilio for Kubernetes on all other certified Kubernetes distributions where the Trilio operator was installed via Helm.
Delete all the custom resources associated with Trilio - Backup, Restores, Targets, Hooks, BackupPlans, ClusterBackupPlan etc.
Delete the Trilio Manager CR. When you uninstall the TVM CR, the triliovault-manager
helm release will be uninstalled.
kubectl delete tvm triliovault-manager --namespace <T4K-installation-namespace>
3. Uninstall the Helm Operator
helm uninstall triliovault-operator --namespace <T4K-installation-namespace>
4. Delete all the Trilio CRDs
kubectl delete crds $(oc get crds | grep trilio | awk '{print $1}')
The application is now uninstalled and you can install a newer version.