×
Uninstall in an air-gapped BYO environment
To uninstall an ITRS Analytics instance deployed via BYO (Bring Your Own Kubernetes), there are two supported approaches depending on your deployment scenario.
Delete the entire Kubernetes cluster Copied
If the Kubernetes cluster is dedicated solely to running ITRS Analytics and no other workloads are present, the simplest approach is to delete the entire cluster. This completely removes all associated components, configurations, and persistent data.
Manually remove ITRS Analytics components Copied
If your Kubernetes cluster hosts other applications or services in addition to ITRS Analytics, you may not be able to delete the whole cluster. In such cases, you can manually uninstall ITRS Analytics using the following commands:
kubectl kots remove itrs-analytics -n <namespace> --undeploy
kubectl delete namespace <namespace>
kubectl delete clusterrole kotsadm-role
kubectl delete clusterrolebinding kotsadm-rolebinding
Replace namespace
with the namespace used for the ITRS Analytics deployment.
This process:
- Undeploys the application using KOTS.
- Deletes the namespace and all resources within it.
- Removes cluster-level permissions granted to KOTS Admin.
["ITRS Analytics"]
["User Guide", "Technical Reference"]