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 the Event Streams UI as an administrator.
- 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 Master Host>:<Cluster Master API Port>
The master host and port for your cluster are set during the installation of IBM Cloud Private. - 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.