Event Endpoint Management continues to be enhanced

Event Endpoint Management continues to be available and enhanced as part of IBM's integration platforms.

End of Marketing announcement for IBM Event Automation

Event Streams and Event Processing are deprecated and no enhancements will be provided. Support and security fixes will be provided in line with published support lifecycle policies. Future event-driven solutions that make use of Apache Kafka and Flink will be delivered by IBM Confluent Platform.

For more information, see the support lifecycle transition and software ordering completion announcement.

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.