Attention: This version of Event Streams has reached End of Support. For more information about supported versions, see the support matrix.

Uninstalling

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:

  1. Log in to the Event Streams UI as an administrator.
  2. Click Workloads > Helm Releases from the navigation menu.
  3. Locate the release name of your installation in the Name column, and click More options icon More options > Delete in the corresponding row.
  4. 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:

  1. 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.
  2. Run the following command:
    helm delete --purge <release_name>
  3. Optional: If you enabled persistence during installation, you also need to manually remove PersistentVolumeClaims and PersistentVolumes. Use the Kubernetes command line tool as follows:
    1. To delete PersistentVolumeClaims:
      kubectl delete pvc <PVC_name> -n <namespace>
    2. To delete PersistentVolumes:
      kubectl delete pv <PV_name>

Cleaning up after uninstallation

The uninstallation process might leave behind artifacts that you have to clear manually.