You can uninstall Event Streams by using the UI or the CLI.
Using the UI
To delete the Event Streams installation by using the UI:
- Log in to your Event Streams UI as an administrator from a supported web browser (see how to determine the login URL for your Event Streams UI).
- Click Workloads > Helm Releases from the navigation menu.
- Locate the release name of your installation in the Name column, and click More options > Delete in the corresponding row.
- Optional: If you enabled persistence during installation, you also need to manually remove PersistentVolumes and PersistentVolumeClaims.
Using the CLI
Delete the Event Streams installation by using the CLI:
- Log in to your cluster as an administrator by using the IBM Cloud Private CLI:
cloudctl login -a https://<cluster-address>:<cluster-router-https-port>
- Run the following command:
helm delete --purge <release_name>
- Optional: If you enabled persistence during installation, you also need to manually remove PersistentVolumeClaims and PersistentVolumes. Use the Kubernetes command line tool as follows:
- To delete PersistentVolumeClaims:
kubectl delete pvc <PVC_name> -n <namespace>
- To delete PersistentVolumes:
kubectl delete pv <PV_name>
- To delete PersistentVolumeClaims:
Cleaning up after uninstallation
The uninstallation process might leave behind artifacts that you have to clear manually.